sometimes I get a warning : rank deficient

조회 수: 2 (최근 30일)
William Campbell
William Campbell 2020년 3월 1일
댓글: William Campbell 2020년 3월 2일
sometimes I get a Warning: Rank deficient, rank = 0, tol = 0.000000e+00 and it points to an equation in a loop :
a = sqrt(abs(x/x-d))); where x and d are scalars
my results seem plausible, but should I be concerned about this warning ?
  댓글 수: 1
William Campbell
William Campbell 2020년 3월 2일
Thanks for your fast response - it looks like I had updated my x variable further into my script and created a conflict. All sorted now. Thanks again.

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

답변 (1개)

Matt J
Matt J 2020년 3월 2일
편집: Matt J 2020년 3월 2일
should I be concerned about this warning
If the line you've shown is what caused the warning, then it's likely x and d are not both scalars as you intended. You might need to be concerned about that.
Incidentally, this line looks like it should be,
a = sqrt( abs( x./(x-d) ) );

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by