Plotting graph using M-file.
7 ビュー (過去 30 日間)
古いコメントを表示
I want to plot graph of x Vs y. So when i do below steps its showing me error as Too many input arguments. So please let me know if you have any idea about this.
for i = 1:10:100
y=i+2;
t=y^2+4;
x(i) = (2*t-1);
k(i)=y+1;
end
plot (x(i),y(i))
I
4 件のコメント
kash
2013 年 3 月 1 日
the reason i sthe value x has more values than y ,y has single value,use plot inside loop
採用された回答
その他の回答 (1 件)
ChristianW
2013 年 3 月 1 日
k = 0;
for m = 1:10:100
k = k+1;
y(k)=m+2;
t=y(k)^2+4;
x(k) = (2*t-1);
end
plot(x,y)
3 件のコメント
参考
カテゴリ
Help Center および File Exchange で Function Creation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!