필터 지우기
필터 지우기

Where is the mistake ?

조회 수: 2 (최근 30일)
murat
murat 2013년 12월 5일
답변: Andrei Bobrov 2013년 12월 5일
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.

답변 (1개)

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

카테고리

Help CenterFile Exchange에서 Directed Graphs에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by