Problem about plotting 2D about multiple of functions

1 Ansicht (letzte 30 Tage)
Amin Bor
Amin Bor am 6 Dez. 2016
Kommentiert: Amin Bor am 7 Dez. 2016
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.

Akzeptierte Antwort

Mischa Kim
Mischa Kim am 6 Dez. 2016
Bearbeitet: Mischa Kim am 6 Dez. 2016
Amin, use instead
y = floor(sin(x)) .* floor(x); % notice the period before the *
This allows you to do element-wise multiplication.
  1 Kommentar
Amin Bor
Amin Bor am 7 Dez. 2016
Thanks for answer. I have another question. when I draw a graph like my graph in my question It's like this. my problem is that the circle that I showed is only one point and there is no line between this point and my graph but Matlab joint this points with a line to my graph. Is it possible to change this property? Thanks again.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by