error in indexing mode

1 回表示 (過去 30 日間)
armin m
armin m 2021 年 11 月 26 日
回答済み: Walter Roberson 2021 年 11 月 26 日
hi, i wanna size of a matrix but below error happens:
Indexing cannot yield multiple results.
Error in Untitle222d2 (line 2)
[N,M]=size(V)
OR
V =
1.0350 0.9710 0.9680
Subscript indices must either be real positive integers or logicals.
Error in Untitle222d2 (line 2)
N=size(V)
what does this means.

回答 (2 件)

Walter Roberson
Walter Roberson 2021 年 11 月 26 日
You accidentally created a variable named "size"

C B
C B 2021 年 11 月 26 日
V= [ 1.0350 0.9710 0.9680]
V = 1×3
1.0350 0.9710 0.9680
[numRows,numCols] = size(V)
numRows = 1
numCols = 3
N=size(V)
N = 1×2
1 3
Working fine. You have some other query can you elaborate more please.

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by