How can I access char elements from the beginning up to some fixed index of the char?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Daniel
el 7 de Dic. de 2022
Respondida: Steven Lord
el 7 de Dic. de 2022
a = char(abdefghijk);
I want the output 'abcdefg'
0 comentarios
Respuesta aceptada
Más respuestas (2)
Vikram Ojha
el 7 de Dic. de 2022
Editada: Vikram Ojha
el 7 de Dic. de 2022
>> a='abcdefghijk'
>> a(1:5)
ans =
'abcde'
In genral a(1:n) % n for index
You can consider going through following doc: https://in.mathworks.com/help/matlab/ref/string.html, it will be helpful
In case you want you can take Matlab fundamental certification: https://matlabacademy.mathworks.com/details/matlab-fundamentals/mlbe
Ver también
Categorías
Más información sobre Matrix Indexing 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!