attribute to an array of symbolic variables an array with their values
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
timo
el 21 de Mzo. de 2016
Comentada: Walter Roberson
el 22 de Mzo. de 2016
HI all
Is there a trick to do this in MATLAB ?
[R1 R2 R3 VA VB VG]=[8 2 4 12 -6 0]
I want to assign to all sym variables the values on right
0 comentarios
Respuesta aceptada
Walter Roberson
el 21 de Mzo. de 2016
V = num2cell([8 2 4 12 -6 0]);
[R1 R2 R3 VA VB VG] = deal(V{:});
This does not have anything to do with the symbolic toolbox ? Or are you wanting to subs() like that? If so then
subs(TheExpression, [R1 R2 R3 VA VB VG], [8 2 4 12 -6 0])
2 comentarios
Walter Roberson
el 22 de Mzo. de 2016
Yes, unfortunately cell expansion cannot be done on an expression
Más respuestas (0)
Ver también
Categorías
Más información sobre Assumptions 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!