Storing workspace variables that match the specified regular expressions.
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Derrell Dsouza
el 7 de Jun. de 2022
Comentada: Stephen23
el 7 de Jun. de 2022
How do we store workspace variables identifed using regular expressions.
Consider the following example below...
ex_1 = 5;
ex_2 = 3;
i_i = 4;
%if I do this
whos -regexp ^ex_[1]*|^i.\d+
%it works
%but if I do this
s = whos(-regexp ^ex_[1]*|^i.\d+);
%it throws an error
1 comentario
Stephen23
el 7 de Jun. de 2022
"It throws an error"
Note that storing meta-data in variable names makes code slow, complex, inefficient, buggy, and difficult to debug.
Respuesta aceptada
Fangjun Jiang
el 7 de Jun. de 2022
Editada: Fangjun Jiang
el 7 de Jun. de 2022
see "doc whos"
s=whos('-regexp','^ex_[1]*|^i.\d+')
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Type Identification 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!