Filter löschen
Filter löschen

why do i get the error: matrix dimensions must agree ??

2 Ansichten (letzte 30 Tage)
María Jesús
María Jesús am 29 Sep. 2014
Bearbeitet: Mischa Kim am 29 Sep. 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?

Akzeptierte Antwort

Mischa Kim
Mischa Kim am 29 Sep. 2014
Bearbeitet: Mischa Kim am 29 Sep. 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.

Weitere Antworten (0)

Kategorien

Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by