Manipulating data in Cell Arrays
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ARS
el 31 de Ag. de 2015
Hi All
I have a simple question as follows:
I have a cell matrix of size (20 X 20). All cells are filled with data like 'S1', 'S2', 'S3' to 'S400'. There is no other data. I want to remove 'S' from all cells and only keep the numeric part in the matrix.
Your help will be highly appreciated.
Regards
AMD.
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 31 de Ag. de 2015
Editada: Azzi Abdelmalek
el 31 de Ag. de 2015
If data is your matrix
out=str2double(cellfun(@(x) regexp(x,'\d+','match'),data))
Ver también
Categorías
Más información sobre Cell Arrays 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!