write variable in symbolic way

1 visualizzazione (ultimi 30 giorni)
Nello Troccia
Nello Troccia il 5 Nov 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

Risposte (1)

Conrad
Conrad il 5 Nov 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...

Categorie

Scopri di più su Symbolic Math Toolbox in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by