hi, can any one help me please.

조회 수: 1 (최근 30일)
zakir hussain
zakir hussain 2017년 5월 1일
답변: hmi amid 2017년 5월 1일
This is my matlab code t = 2*10^-9; L = 50*10^-6; R = 50*10^-9; u = (R+t)^2 - R^2; e(u) = sqrt( 1 - (( R^2 + u ) / ( (L/2)^2 + u))); I am getting error while it runs

채택된 답변

hmi amid
hmi amid 2017년 5월 1일
You should not use e(u). Remove (u) after e. Like this down here:
t = 2*10^-9;
L = 50*10^-6;
R = 50*10^-9;
u = (R+t)^2 - R^2;
e = sqrt( 1 - (( R^2 + u ) / ( (L/2)^2 + u)));
Amid.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Types에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by