size 関数がうまく動かない
显示 更早的评论
>> size(Smear)
Subscript indices must either be real positive integers or logicals.
と出ます。ところで、
>> whos
Name Size Bytes Class Attributes
Smear 18486x1 147888 double
とも出ます。size()が失敗している原因は何でしょう?
回答(1 个)
michio
2018-7-24
同名の変数、もしくは自作の関数が存在し、意図されている size 関数が認識されていないのかもしれません。
which -all size
の実行を試していただけますか?手元の環境ですと
>> which -all size
built-in (C:\Program Files\MATLAB\R2018a\toolbox\matlab\elmat\size)
が先頭で、C:\Program Files 以下のファイルなどが並びますが、ここで size という変数が定義されている場合には
>> which -all size
size is a variable.
が先頭に表示されるかと。
类别
在 帮助中心 和 File Exchange 中查找有关 Data Import and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!