Array of fixed length
Mostrar comentarios más antiguos
A user inputs a value n.
I want to make an array that has n values, 1/n.
If n=4, output would be
[1/4 1/4 1/4 1/4]
Not quite sure how to do this.
1 comentario
Walter Roberson
el 9 de Dic. de 2020
Hint: ones(), or repmat(), or repelem() .
Respuestas (0)
Categorías
Más información sobre Matrices and Arrays en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!