Clear Filters
Clear Filters

Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN. Assignment has more non-singleton rhs dimensions than non-singleton subscripts

1 view (last 30 days)
I got this error while debugging. what does it mean. how can i fix it? BEM.m is the main code

Answers (1)

Matt J
Matt J on 13 Oct 2017
Edited: Matt J on 13 Oct 2017
The warning message means that you are trying to invert a singular matrix. Use
>>dbstop if warning
and then re-run to trap the occurrence of this and see if you generated the matrix that you intended.
The error message means that you are trying to do a subscripted assignment, like below, where the right and left sides do not match in size
>> a=rand(3); b=rand(3,3,2);
>> a(1:2,:)=b(1:2,:,:)
Assignment has more non-singleton rhs dimensions than non-singleton subscripts
The usual way to trap these is likewise with the debugger
>> dbstop if error
  4 Comments
Bishow Shrestha
Bishow Shrestha on 15 Oct 2017
Thanks. Its a useful code.. still I could not understand the singleton dimension error. Is it related to dimension. does LHS and RHS need to be same dimension?
In the error message rhs dimension means Right hand side ? or something else??
Jan
Jan on 15 Oct 2017
@Bishow: Exactly. RHS means "right hand side". The dimensions on both sides of the equal operator do not match.

Sign in to comment.

Categories

Find more on Function Creation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!