How to concatenate strings
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sameer Pujari
el 21 de Jul. de 2021
Respondida: KSSV
el 21 de Jul. de 2021
Return answer = 'MIF' on passing the function
FirstLetterOfWords('Matlab Is Fun') = 'MIF'
0 comentarios
Respuesta aceptada
KSSV
el 21 de Jul. de 2021
str = 'Matlab Is Fun' ;
iwant = cellfun(@(v)v(1),strsplit(str))
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!