initialize a multidimensional matrix
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
zhang
el 19 de Feb. de 2014
Editada: Azzi Abdelmalek
el 19 de Feb. de 2014
Given two numbers: M, N, how to create a matrix: res = MxMxMxMxM...xM, where ndims(res) == N.
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 19 de Feb. de 2014
Editada: Azzi Abdelmalek
el 19 de Feb. de 2014
N=6;
m=4;
A=zeros(repmat(m,1,n));
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Elementary Math 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!