why do i get the error: matrix dimensions must agree ??
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
María Jesús
el 29 de Sept. de 2014
Editada: Mischa Kim
el 29 de Sept. de 2014
this is what I'm trying to plot
x=linspace(0,100,100);
a=5;
y=1/(abs(a*x)+1);
figure
plot(x,y)
how do I fix this error?
0 comentarios
Respuesta aceptada
Mischa Kim
el 29 de Sept. de 2014
Editada: Mischa Kim
el 29 de Sept. de 2014
Maria, use
y = 1./(abs(a*x) + 1);
instead. Notice the dot right after the "1". This so-called elementwise division is necessary because x is a vector. See the documentation for more detail.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Elementary Math 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!