Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ A place to practice git and GitHub

This repository contains three scripts: one written in BASH, one written in Python and one written in MATLAB!

Feel free to change any of them, to test your git and GitHub skills!
Feel free to change any of them to test your git and GitHub skills.

Don't worry about doing anything wrong - this is a place for practicing and permissions are set so you cannot change the master branch without a PR anyway.

Expand Down
6 changes: 3 additions & 3 deletions matlab_line_plot.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

% description here

x=1:2:10;
y=1:2:10;
x=1:.5:20;
y=1:.5:20;

plot(x,y)

t = [0:0.1:2*pi]
t = [0:0.01:2*pi]
sint = sin(t)
plot(t,sint)