Borrar filtros
Borrar filtros

fprintf length of vector

3 visualizaciones (últimos 30 días)
Arashdeep Dhillon
Arashdeep Dhillon el 17 de Abr. de 2019
Comentada: Guillaume el 23 de Abr. de 2019
how do i print the length of a vector?? so i have a vector V = [4,9,-3,12,0,-9,15,17,25,-6,4,10,-2,15] and i got its length by L = length (V) now how do i print the length?

Respuestas (1)

Adam Danz
Adam Danz el 17 de Abr. de 2019
Editada: Adam Danz el 23 de Abr. de 2019
fprintf('Length of vector is %d\n', length(V))
The " %d " specifies that the number to be printed is an integer which should always be the output of length().
The " \n " specifies that a new line should be started after this text.
  1 comentario
Guillaume
Guillaume el 23 de Abr. de 2019
Note: another option that may be more intuitive for beginners
disp("Length of vector is " + length(V))
I'd recommend using numel rather than length. Many people misuse length.

Iniciar sesión para comentar.

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by