Matlab warning points to the wrong line

조회 수: 1 (최근 30일)
Alexandru
Alexandru 2014년 10월 29일
댓글: Alexandru 2014년 10월 29일
Hello,
I am executing an m-file using Matlab 2014b. Let's call it my_m_file. During the execution I am getting the following warning:
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.277288e-17. > In viaMtimes at 35 In my_m_file at 35
I understand the warning and at line 35 in the file viaMtimes one has: "Z = inv(Z);". It is true that at several points in my code I am raising a matrix to the power -1 and I understand that on one such occasion the matrix is close to singular so the inversion is problematic.
Normally the last part of the message "In my_m_file at 35" would point out to the line in my m file where the problem lies. But this is where it gets strange. On line 35 of the file I am actually declaring a new variable as M = NaN(T,N) where T and N have been previously defined. What causes Matlab to point to the wrong line and how can I fix this?
Thanks,
Alex

답변 (2개)

Andreas Goser
Andreas Goser 2014년 10월 29일
I can think of an effect where you have multiple files with the same name on the path like previous versions or a pcoded file. You can test this with
which my_m_file -all
I also wonder if the effect is reproducible on other machines/installations?
  댓글 수: 1
Alexandru
Alexandru 2014년 10월 29일
I tested for the same name on the path using your command and it produced a single output: the path to the current file. I also tried renaming the file, but that didn't work either.
I will see to what extent I can run the code on a different machine.

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


Robert Cumming
Robert Cumming 2014년 10월 29일
This could also happen if your file is locked by mlock. If you restart Matlab does the problem remain?
  댓글 수: 1
Alexandru
Alexandru 2014년 10월 29일
I tried a restart both of Matlab and the computer. That didn't fix it.

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

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by