フィルターのクリア

cell2mat error due to element size?

2 ビュー (過去 30 日間)
Aldrich To
Aldrich To 2015 年 11 月 16 日
コメント済み: Mohammad Abouali 2015 年 11 月 19 日
Hi everyone.
I am getting the following error when I try to convert the cell array to a double.
C =
'104'
'98'
'98'
'98'
'94'
'94'
'100'
'100'
loadrange = str2num(cell2mat(C))
Error using cat
Dimensions of matrices being concatenated are not consistent.
Error in cell2mat (line 83)
m{n} = cat(1,c{:,n});
I believe the error is due to the number of elements not being the same size. Is there a way around this?
Thanks!

採用された回答

Mohammad Abouali
Mohammad Abouali 2015 年 11 月 16 日
編集済み: Mohammad Abouali 2015 年 11 月 16 日
Use str2double() instead.
C={'104',
'98',
'98',
'98',
'94',
'94',
'100',
'100'};
loadrange = str2double(C)
loadrange =
104
98
98
98
94
94
100
100
  2 件のコメント
Aldrich To
Aldrich To 2015 年 11 月 19 日
Thanks Mohammad!
Mohammad Abouali
Mohammad Abouali 2015 年 11 月 19 日
You are welcome.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by