Problem about plotting 2D about multiple of functions
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Amin Bor
el 6 de Dic. de 2016
Comentada: Amin Bor
el 7 de Dic. de 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.
0 comentarios
Respuesta aceptada
Mischa Kim
el 6 de Dic. de 2016
Editada: Mischa Kim
el 6 de Dic. de 2016
Amin, use instead
y = floor(sin(x)) .* floor(x); % notice the period before the *
This allows you to do element-wise multiplication.
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!