Resizing a Matrix in MATLAB?
29 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Nisar Ahmed
am 17 Nov. 2022
Kommentiert: Nisar Ahmed
am 17 Nov. 2022
Hi,
Q.1: I have a matrix A of size 106 1 100. and after A = squeeze(A), the size is 106 100. Suppose I want unsqueeze A again to get back its size 106 1 100. How can I unsqeeze it?
Q.2: I have a matrix B of size 100 97 and I want resize it as 100 106 by adding 9 columns in the start (each has constant number). how I can do it in MATLAB?
0 Kommentare
Akzeptierte Antwort
Torsten
am 17 Nov. 2022
%Q1
A = rand(106,1,100);
size(A)
A = squeeze(A);
size(A)
A = reshape(A,[106 1 100]);
size(A)
%Q2
A = rand(100,97);
start_A = rand(100,9);
A = [start_A,A];
size(A)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!