How to define variable that itself contains one or more variables ?
Show older comments
How can I find b(ijk) for different values of i,j,k by just entering values of i,j,k.
b(ijk) = d/dq(k) [m(ij)] q(1), q(2), q(3).......are variables
How can we define variable in a variable ( q(k) , m(ij) ) ?
5 Comments
James Tursa
on 7 Jul 2014
Can you give more detail? What are the dimensions of d, dq, q, m? How do you want those combined to form b? Maybe give an example for one specific element of b.
dpb
on 7 Jul 2014
Is a variable "in" a variable a cell array???
Alish
on 9 Jul 2014
Alish
on 9 Jul 2014
dpb
on 9 Jul 2014
See
doc function_handle % (@)
for perhaps a way to proceed.
Answers (1)
Jos (10584)
on 9 Jul 2014
0 votes
You do not want to store things like Q1 = .. Q2 = .. .. Q98293 = .. in gazillion different, but related, variables
You want a single array Q, which can be an array of doubles, cells, structures.
Categories
Find more on Variables in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!