what is the infoC?
1 回表示 (過去 30 日間)
古いコメントを表示
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
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.
採用された回答
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!