Convert String to Numerical Matrix
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Samuel Lee
el 10 de Oct. de 2020
Comentada: Samuel Lee
el 10 de Oct. de 2020
Hi there,
Just wondering how to convert some matrix string (such as A = '[1,2,3,4,5]') into a numerical matrix (like [1,2,3,4,5]) so that it displays when entered into matlab like,
ans =
1 2 3 4 5
instead of
Columns 1 through 5
1.0000 2.0000 3.0000 4.0000 5.0000
Cheers,
Samuel
Respuesta aceptada
madhan ravi
el 10 de Oct. de 2020
Editada: madhan ravi
el 10 de Oct. de 2020
Normally str2num() is not suggested:
Wanted = sscanf(A(2:end-1), '%d').' % edited after sir Walter’s comment to exclude []
5 comentarios
Walter Roberson
el 10 de Oct. de 2020
A = '[1 0.2 0.4 0.5 0.6]'; sscanf(A(2:end-1), '%f')
If the problem is that you might have commas or might not then:
A = '[1 0.2, 0.4, 0.5 0.6]'; sscanf(A(2:end-1), '%f%*[, ]')
Más respuestas (1)
Ameer Hamza
el 10 de Oct. de 2020
Editada: Ameer Hamza
el 10 de Oct. de 2020
A = '[1,2,3,4,5]';
A = str2num(A);
Result
>> A
A =
1 2 3 4 5
A = '[1,2,3,4,5]';
A = eval(A);
0 comentarios
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!