How can I stop a user defined function from returning the output twice?

The function seems to be looping twice. I cannot see how the code allows this.
Code:
function [ x,solution,logical ] = sim_eq( A,b )
%SIM_EQ solves a system of simultaneous equations.
% Calculate rank and solve
n=input('Input number of unknowns:');
m=input('Input number of equations:');
r1=rank(A);
r2=rank([A b]);
if r1==r2 && r1==n && r2==n
if m>n
display('Overdetermined set of equations. Least-squares fit.');
x=A\b
solution= 'Unique'
logical= 'Approximate'
elseif m==n
x=A\b
solution= 'Unique'
logical= 'Exact'
end
elseif r1==r2 && r1<n && r2<n
x=pinv(A)*b
solution= 'A solution'
logical= 'Exact'
elseif r1~=r2
x= 'No solution'
solution= 'nil'
logical= 'nil'
end
end

댓글 수: 3

Seems to just sit there afaict... :)
Show us what you think the issue is specifically, don't make us try to dream it up...
Yeah thanks. I read your first statement and within 2 seconds it dawned on me. I thought I wouldn't put semi-colons so it would display. But it displays automatically. duh. I'm tired. Thanks!!
I had to format the code and admit I then didn't actually read it...hadn't thought it so simple a question... :)

댓글을 달려면 로그인하십시오.

 채택된 답변

Ken Atwell
Ken Atwell 2015년 3월 22일

2 개 추천

You don't have semicolons at the end of some lines (so output of those lines will be displayed). Maybe it is running once, but the lack of semicolons is making you think it is running twice?

댓글 수: 1

Yes thanks. It hit me as soon as I read the previous comment. Can't believe I did that. Thank you!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Get Started with MuPAD에 대해 자세히 알아보기

질문:

2015년 3월 22일

댓글:

dpb
2015년 3월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by