i am not getting correct output.please help

조회 수: 1 (최근 30일)
hrushikesh kyathari
hrushikesh kyathari 2019년 5월 19일
답변: madhan ravi 2019년 5월 19일
function [e]=eccentricity(a,b)
if (a||b==0)
disp('warning');
elseif a<b
temp=a;
a=b;
b=temp;
e=sqrt(1-(b^2/a^2));
else
e=sqrt(1-(b^2/a^2));
end
end

채택된 답변

madhan ravi
madhan ravi 2019년 5월 19일
e = eccentricity(1,2) % function call
function e = eccentricity(a,b) % function definition , a & b assumed as scalars for this task
if any(ismember([a,b],0))
e = sprintf('warning');
elseif a < b
temp = a;
a = b;
b = temp;
e = sqrt(1-(b^2/a^2));
else
e = sqrt(1-(b^2/a^2));
end
end

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by