How to create a 4 dimensional array??
Mostra commenti meno recenti
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!
Risposta accettata
Più risposte (1)
the cyclist
il 1 Dic 2011
Modificato: John Kelly
il 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 Commenti
Jan
il 1 Dic 2011
This is, as requested, the basic code. +1
erfan vahdat
il 28 Lug 2020
thanks
Precious Chukwuezi
il 30 Dic 2023
thanks
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!