Skip to content

Commit

Permalink
Update matlab_line_plot.m
Browse files Browse the repository at this point in the history
  • Loading branch information
samfar2002 authored Jul 5, 2022
1 parent b83e5ad commit 9725d9d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion matlab_line_plot.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@
x=1:2:10;
y=1:2:10;

plot(x,y)
plot(x,y)

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

0 comments on commit 9725d9d

Please sign in to comment.