simple error on plotting

1 回表示 (過去 30 日間)
Moj
Moj 2015 年 10 月 29 日
回答済み: Ingrid 2015 年 10 月 29 日
Dear There, I got an unknown error on plotting so simple function. My function is:
function test
x = 0:pi/100:2*pi;
y = sin(x);
plot (x,y)
end
I am really confused why I get this unknown error:
Error using plot
Too many input arguments.
Error in test2 (line 4)
plot (x,y)
Thanks in advance

回答 (2 件)

Thorsten
Thorsten 2015 年 10 月 29 日
編集済み: Thorsten 2015 年 10 月 29 日
It works for me. Try
clear
test2
and look which plot function you are actually using
which plot
BTW: linspace is a nice way to get some evenly spaced numbers
x = linspace(0, 2*pi); % default is 100 values
or
x = linspace(0, 2*pi, 200); % if you need more

Ingrid
Ingrid 2015 年 10 月 29 日
this should work, are you sure that you have not redefined the plot function or used it as a variable name?

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by