Azzera filtri
Azzera filtri

Concatenation of three-dimensional arrays

2 visualizzazioni (ultimi 30 giorni)
Richard Wood
Richard Wood il 28 Feb 2020
Modificato: Stephen23 il 2 Mar 2020
Hello everyone,
I am trying to concatenate two three-dimensional arrays inside of a double for loop:
for i=1:length(Temperature_max)
for j=1:length(Hy1_values)
Hy1(:,j,i)=ones(length(time_first_interval),1).*Hy1_values(j); % A/m
Hy2(:,j,i)=zeros(length(time_second_interval),1); % A/m
Hy(:,j,i)=vertcat(Hy1(:,j,i),Hy2(:,j,i));
end
end
Obviously vertcat does not work. Any suggestion?
  6 Commenti
Stephen23
Stephen23 il 2 Mar 2020
Modificato: Stephen23 il 2 Mar 2020
This cat call does absolutely nothing, because one array concatenated with nothing else simply returns the one array:
cat(2,[Hy1(:,j,i);Hy2(:,j,i)])
You already concatenated two arays togther (vertically) using square brackets to give one array, and then passed that one array to the totally superfluous cat call, which simply returns that same one array. Not much point in that.
Note that these are equivalent:
[A;B]
cat(1,A,B)
If you want to concatenate vertically, then you can use either.
Guillaume
Guillaume il 2 Mar 2020
Note that these are equivalent:
and
vertcat(A, B)

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by