Borrar filtros
Borrar filtros

Where is the mistake ?

2 visualizaciones (últimos 30 días)
murat
murat el 5 de Dic. de 2013
Respondida: Andrei Bobrov el 5 de Dic. de 2013
there is a mistake i could not understand
*i must draw a graph like that:
x=u=10 11 12 13 ... 100000
y=L(u)*
>> u=10:1:100000;
d=4225;
e=(1.917/(4*pi*(10.^-7)*u)+1.326*10.^7);
L=d/e;
plot(u,L);
??? Error using ==> mldivide
Matrix dimensions must agree.

Respuestas (1)

Andrei Bobrov
Andrei Bobrov el 5 de Dic. de 2013
use ./ instead /:
u=10:1:100000;
d=4225;
e=1.917./(4*pi*(10.^-7)*u)+1.326*10.^7;

Categorías

Más información sobre Directed Graphs en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by