Borrar filtros
Borrar filtros

function that gives the number of letters in a word

1 visualización (últimos 30 días)
Lee
Lee el 30 de Abr. de 2013
for example abcd should be equal 4 when i define a vector w={'abcd','ccb'} length(w(1,1)) gives me 1 and not 4

Respuestas (2)

Andrei Bobrov
Andrei Bobrov el 30 de Abr. de 2013
length(w{1}) ;
out = cellfun('length',w);
  2 comentarios
Jan
Jan el 30 de Abr. de 2013
w(1,1) is : {'abcd'}, a {1x1} cell and therefore its length is 1. But you want the contents of this cell element, and therefore nedd the curly braces, as Andrei has shown.

Iniciar sesión para comentar.


Walter Roberson
Walter Roberson el 30 de Abr. de 2013

Categorías

Más información sobre Data Type Conversion 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