How can I store my data into a 2D array?

My code is attached below and it has the "Subscripted assignment dimension mismatch." error
How can I fix this? and how can I store my data into a 2D array? Thanks!

답변 (3개)

Renato Agurto
Renato Agurto 2015년 12월 16일

0 개 추천

Hi. The output of dec2bin is a char not a double. So you should define "out" as a cell:
[m,n] = size(x);
out = cell(m,n);
for i = 1:m
for j = 1:n
out{m,n} = dec2bin(abs(x(m,n)));
end
end
Cheers! Renato

댓글 수: 2

Nic DC
Nic DC 2015년 12월 16일
Hi Renato,
I tried doing your suggestion in defining 'out' as a cell and ran the program but then the output shown only brackets and 1 dec2bin conversion at the last element of the array
Renato Agurto
Renato Agurto 2015년 12월 16일
편집: Renato Agurto 2015년 12월 16일
sorry, it should be:
out{i,j} = dec2bin(abs(x(i,j)));
;-)

댓글을 달려면 로그인하십시오.

Andrei Bobrov
Andrei Bobrov 2015년 12월 16일

0 개 추천

out = reshape(cellstr(dec2bin(abs(x))),size(x));

댓글 수: 2

Nic DC
Nic DC 2015년 12월 16일
Hi Andrei,
I tried doing your suggestion but this error occurred: "Error using cellstr Too many input arguments."
How do you suggest to go about this?
Andrei Bobrov
Andrei Bobrov 2015년 12월 16일

댓글을 달려면 로그인하십시오.

Nic DC
Nic DC 2015년 12월 16일

0 개 추천

Hi Renato,
I tried doing your suggestion in defining 'out' as a cell and ran the program but then the output shown only brackets and 1 dec2bin conversion at the last element of the array

카테고리

도움말 센터File Exchange에서 Data Type Conversion에 대해 자세히 알아보기

질문:

2015년 12월 16일

댓글:

2015년 12월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by