Borrar filtros
Borrar filtros

Multi-dimentional arrays with matlab

3 visualizaciones (últimos 30 días)
Donna Paulson
Donna Paulson el 7 de Feb. de 2019
Editada: Donna Paulson el 8 de Jun. de 2020
I have been working on arrays with matlab and i came across a problem that can only be solved with multii dimentional arrays and i have read that one cannnot work with multi dimentional arrays without updating drivers in matlab, however i also read that i can create a mechanism with functions that can enable me to work with multi dimentional arrays, please help.

Respuestas (2)

Stephen23
Stephen23 el 7 de Feb. de 2019
Editada: Stephen23 el 8 de Feb. de 2019
"i have read that one cannnot work with multi dimentional arrays in matlab"
Instead of reading incorrect and/or misleading statements on the internet, it is much more reliable to read the MATLAB documentation:
It is very easy to create or work with ND arrays, you can use indexing, vectorized code, etc., just like with vectors and matrices. Here is an array with size 5x4x3x2:
A = rand(5,4,3,2);
All numeric arrays, cell arrays, structure arrays, string arrays, and character arrays can be multi-dimensional. In fact, for those classes MATLAB makes absolutely no distinction between scalars, vectors, matrices, and ND arrays: they are all the same class of object. Or, to put it another way, in MATLAB:
  • scalars are just 1x1x1x1x... arrays.
  • vectors are just Mx1x1x1 or 1xNx1x1x1x... arrays.
  • matrices are just MxNx1x1x1x1... arrays.
  • all arrays are just MxNxPx.... arrays!

Ranjith veeran
Ranjith veeran el 7 de Feb. de 2019

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by