Filter löschen
Filter löschen

How to create a 4 dimensional array??

179 Ansichten (letzte 30 Tage)
Michael
Michael am 1 Dez. 2011
This is just a general question because I can't find it anywhere, but does anyone know how to create a 4-D array? What would the basic code be for it or just a basic example of one would be great!

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 1 Dez. 2011
Supposing A and B are 3 dimensional arrays, then cat(4,A,B) would join them along the fourth dimension.
  1 Kommentar
Jan
Jan am 1 Dez. 2011
This works for 2D arrays also, because they are just special 3D arrays. See: "cat(4, 1, 1)".

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

the cyclist
the cyclist am 1 Dez. 2011
Bearbeitet: John Kelly am 26 Feb. 2015
Here is a trivial example:
>> A = zeros(2,3,5,7);
>> A(1,2,1,2) = 6;
>> A(1,1,5,6) = 5;
>> A(2,1,1,:) = pi;
  3 Kommentare
erfan vahdat
erfan vahdat am 28 Jul. 2020
thanks
Precious Chukwuezi
Precious Chukwuezi am 30 Dez. 2023
thanks

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Matrices and Arrays 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!

Translated by