what is the infoC?

조회 수: 8 (최근 30일)
mohd akmal masud
mohd akmal masud 2020년 12월 22일
답변: Gaurav Garg 2020년 12월 29일
Hi all, I got the error when running my coding. anyone know the error?
what is the "infoC"?
Reading images. Please wait...
Error using save
Variable 'infoC' not found.
Error in SPECTsingle (line 69)
save info infoC
  댓글 수: 2
Walter Roberson
Walter Roberson 2020년 12월 22일
I find a couple of places on the Internet that hint that there might be a software package named SPECTsingle, but I am not able to locate such a package, so I do not know what the code is that you are using.
The message is saying that SPECTsingle expected to be able to save one of its variables that it named infoC but that it was not able to do so, such as if the variable was not assigned to. infoC is nothing specific to MATLAB: it is some internal variable name for the package. For example, if you had code that looked like
for K = 1 : numimages
if mean(ImageData{K}(:)) > 0.3
infoC = K;
break
end
end
then you run the risk that the condition was never true and so infoC was never assigned to.
mohd akmal masud
mohd akmal masud 2020년 12월 22일
you true. i got it. thank your walter roberson. i have contact you by email long time ago.

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

채택된 답변

Gaurav Garg
Gaurav Garg 2020년 12월 29일
Hi Akmal,
On doing a quick seach in the code directory of MATLAB, I found that there is no such package or line of code mentioning 'SPECTsingle'.
So, I would suggest you to work on the comment above, and SPECTsingle and infoC might be variables used in your code itself.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by