reshape a matrix with a divisible of 10....

11 ビュー (過去 30 日間)
Elysi Cochin
Elysi Cochin 2014 年 2 月 26 日
コメント済み: Elysi Cochin 2014 年 2 月 26 日
i wanted to reshape my a matrix of size 1*N into 10 rows N/10 columns... but when N is not divisible by 10 i get error... how can i rectify the error?? either pad it with zeros to get a number divisible by 10 or get the previous number divisible by 10....
that is if my matrix
A = 1 * 100
i need output B to be 10*10 output
but if A = 1*111....
i get error, so i want to convert
A to 1 * 120 and get B = 10*12 or
change A to 1*110 and get B = 10*11 new output....
please do reply me....

採用された回答

Andrei Bobrov
Andrei Bobrov 2014 年 2 月 26 日
編集済み: Andrei Bobrov 2014 年 2 月 26 日
r = 10;
out = reshape([A(:);nan(mod(-numel(A),r),1)],r,[])
ADD
out = reshape(A(1:fix(numel(A)/r)*r),r,[])
  2 件のコメント
Elysi Cochin
Elysi Cochin 2014 年 2 月 26 日
編集済み: Elysi Cochin 2014 年 2 月 26 日
sir which one should i do... isnt both the out variable is same??? what is the difference??
Andrei Bobrov
Andrei Bobrov 2014 年 2 月 26 日
This is a different solutions, for example:
A =randi(25,1,27)
r = 10;
out1 = reshape([A(:);nan(mod(-numel(A),r),1)],r,[]) % first variant
out2 = reshape(A(1:fix(numel(A)/r)*r),r,[]) % second variant

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

その他の回答 (3 件)

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 2 月 26 日
編集済み: Azzi Abdelmalek 2014 年 2 月 26 日
A=rand(87,1);
n=(10-mod(numel(A),10));
n=n*sign(n);
A(end+1:end+n)=0;
out=reshape(A,10,[])
%or
r=10
m=numel(A);
out=reshape([A;zeros(ceil(m/r)*r-m,1)],r,[])

Iain
Iain 2014 年 2 月 26 日
To pad it with 0's:
if mod(numel(A),10)
A(ceil(numel(A)/10)*10) = 0;
end
B = reshape(A,10,[]);
To pad with NaNs...
if mod(numel(A),10)
A(end+1:ceil(numel(A)/10)*10) = NaN;
end
B = reshape(A,10,[]);
To use the previous divisible:
A((floor(numel(A)/10)*10+1):end) = [];
B = reshape(A,10,[]);

Anuj
Anuj 2014 年 2 月 26 日
Try this, its very simple-
n=10-mod(numel(A),10);
if n==10;
reshape(A,10,numel(A)/10)
else
A=padarray(A,[0,n],'post');
reshape(A,10,numel(A)/10)
end
  1 件のコメント
Elysi Cochin
Elysi Cochin 2014 年 2 月 26 日
thank u all....

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

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by