Cell Array to output like this?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Divyesh pandav
el 11 de Ag. de 2021
Editada: Divyesh pandav
el 12 de Ag. de 2021
A = 14×1 cell array
{'0.1' }
{'0.2' }
{'1' }
{'1.1' }
{'1.2.3' }
{'1.2.3.1'}
output i want like this
A =
0.1
0.2
1
1.1
1.2.3
1.2.3.1
2 comentarios
Rik
el 11 de Ag. de 2021
What is flagging your own question going to achieve? You can post comments and even edit your question to clarify it.
Respuesta aceptada
the cyclist
el 11 de Ag. de 2021
Here is one way:
A = {'0.2','1'}
output = cellfun(@str2num,A)
8 comentarios
Stephen23
el 12 de Ag. de 2021
No need for CELLFUN when STRCAT can handle that cell array by itself:
A = {'0.2','1.2.3'};
B = strcat('SELECT sum(abc .time_taken) from abc.que_toc_no = ''',A(:),''' ORDER BY abc')
Más respuestas (0)
Ver también
Categorías
Más información sobre Cell Arrays 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!