how can I convert a string to an expression which "symvar" can search for identifiers?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
how can I convert a string to an expression which "symvar" can search for identifiers?
I use this: symvar 'cos(pi*x - beta1)'
ans =
'beta1'
'x'
and it works, but when I use this:
insertfunction='cos(pi*x - beta1)'
symvar insertfunction
it doesn't have the same results. How can I make it?
0 comentarios
Respuesta aceptada
Paulo Silva
el 7 de Jun. de 2011
insertfunction='cos(pi*x - beta1)'
symvar(insertfunction)
0 comentarios
Más respuestas (1)
Ivan van der Kroon
el 7 de Jun. de 2011
insertfunction='cos(pi*x - beta1)'
>> symvar(insertfunction)
ans =
'beta1'
'x'
0 comentarios
Ver también
Categorías
Más información sobre Data Type Conversion 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!