Problem about plotting 2D about multiple of functions
1 回表示 (過去 30 日間)
古いコメントを表示
Hi.
I started Matlab recently. I wanted to draw this graph but Matlab always say this error.
x = 0:pi/100:6*pi;
y = floor(sin(x)) * floor(x);
plot(x,y);
Error using *
Inner matrix dimensions must agree.
Is it possible to help me? I'm sorry for bad English too.
Thanks.
0 件のコメント
採用された回答
Mischa Kim
2016 年 12 月 6 日
編集済み: Mischa Kim
2016 年 12 月 6 日
Amin, use instead
y = floor(sin(x)) .* floor(x); % notice the period before the *
This allows you to do element-wise multiplication.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!