SourceCodePoint
Thursday, 7 July 2016
Write a MATLAB program for draw 2-D simple plot graph
Code:
clear;
clc;
t=0:pi/100:2*pi;
y=sin(t);
plot(t,y);
grid
on;
Output:
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment