write variable in symbolic way

1 visualización (últimos 30 días)
Nello Troccia
Nello Troccia el 5 de Nov. de 2012
I have to write a system of equation with a lot of variable. Some of this are a little bit difficult to write and to read. Is there a method to indicate a variable in a symbolic way.
For example: is there a method to indicate the variable
x(i+3*g)/(x(i+4*g)+x(i+5*g))
by the letter A(i) ???
Thanks

Respuestas (1)

Conrad
Conrad el 5 de Nov. de 2012
Try this:
g = 1;
x = ones(1,10);
A = @(i) x(i+3*g)/(x(i+4*g)+x(i+5*g));
You can then use A(1) etc...

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by