what is the meaning of this instruction?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
y = -Inf*ones(size(x))
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 22 de Mzo. de 2013
x=[1 2;3 4;5 6]
size(x)
ans =
3 2 % 3 lines and 2 columns
ones(size(x)) % create 3x2 array with 1
ans =
1 1
1 1
1 1
-inf*ones(size(x))
ans =
-Inf -Inf
-Inf -Inf
-Inf -Inf
Más respuestas (0)
Ver también
Categorías
Más información sobre Dialog Boxes 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!