How to initialize a row vector with value zero of size 1xn?
294 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Shubham Maurya
el 19 de Feb. de 2016
Comentada: Khileshwar Rajpuriya
el 30 de Abr. de 2021
Say, I have a row vector A having n elements. I want to make all elements zero.
- For e.g., in 2-d, we write A=zeros(n)
0 comentarios
Respuesta aceptada
jgg
el 19 de Feb. de 2016
Look up the documentation for the zeros function, which you are using:
A = zeros(1,n);
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!