Matrix Dimensions must agree

1 visualizzazione (ultimi 30 giorni)
Erik Sanabria
Erik Sanabria il 20 Ago 2014
Risposto: Ben11 il 20 Ago 2014
Here is a simple function I have to plot for a course in Matlab:
x = [0:0.01:10];
gx = 1-(2/x.^2);
plot(x,gx);
axis([-1,12,-1,12])
When I run it I get this error message:
Error using / Matrix dimensions must agree.
Please help!

Risposte (1)

Ben11
Ben11 il 20 Ago 2014
You're missing a "." in your division:
x = [0:0.01:10];
gx = 1-(2./x.^2);
plot(x,gx);
axis([-1,12,-1,12])

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by