Check for the length of the matrix

2 ビュー (過去 30 日間)
Lev Mihailov
Lev Mihailov 2019 年 7 月 12 日
コメント済み: Lev Mihailov 2019 年 7 月 12 日
Hello! I'm trying to read a file that will give me a matrix, the dimension is 1000x200, but the problem is that it gives me 998, can I add this length, for example, with zeros?
atmatrix=1x200 uint16; atmatrix all meaning 1000
i=200;
matrix=fread(fileID,[datmatrix(i),1],'uint8');
if length(matrix)<1000;
xmatrix=length(1000);
end

回答 (1 件)

KSSV
KSSV 2019 年 7 月 12 日
編集済み: KSSV 2019 年 7 月 12 日
A = rand(3) ;
B = zeros(5) ;
[nx,ny] =size(A);
B(1:nx,1:ny) = A ;
Also read about padarrays
  1 件のコメント
Lev Mihailov
Lev Mihailov 2019 年 7 月 12 日
I did not quite understand what you meant
atmatrix=1x200 uint16; atmatrix all meaning 1000
i=200;
matrix=fread(fileID,[datmatrix(i),1],'uint8');
A=zeros(2);
if length(matrix)<1000;
xmatrix=[matrix A];
end
and this does not work

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

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by