get value from matrix

6 ビュー (過去 30 日間)
Edo Wijaya
Edo Wijaya 2020 年 12 月 10 日
コメント済み: weikang zhao 2020 年 12 月 11 日
I have a matrix C1 which looks like this [7,14,5,6,13,12]. I've tried using arrayfun or cellfun but got an error message
Not enough input arguments. besides that I also used this method
numc = numel(C1);
for j=1:numc
classd{j} = C1{j};
end
but got an error Cell contents reference from a non-cell array object.
Does anyone know how to get the value from the matrix
  1 件のコメント
weikang zhao
weikang zhao 2020 年 12 月 11 日
You can reference from a matrix object by "C1(j)" . "C1{j}" is only used when "C1" is a cell array object. By the way, if you have a 1*n cell array "classd", "classd(j)" represent a 1*1 cell object and "classd{j}" represent the content of "classd(j)".

サインインしてコメントする。

採用された回答

Cris LaPierre
Cris LaPierre 2020 年 12 月 10 日

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOperators and Elementary Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by