I was trying to plot a sine wave in matlab but it keeps on showing this error: undefined function or method 'sin' for input types of argument 'char'
2 次查看(过去 30 天)
显示 更早的评论
t=0:0.001:10:
x= sin(4*pi*t);
plot(t,x)
0 个评论
回答(1 个)
John Chilleri
2017-1-22
编辑:John Chilleri
2017-1-22
You have a colon after t = 0.0:0.001:10: <-
t = 0:0.001:10;
x = sin(4*pi*t);
plot(t,x)
The above code works for me.
Also, make sure you haven't used pi as a variable name. My guess is that you have assigned a string or character to pi.
Hope this helps!
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!