How to create matrices of Symbolic Variables in an earlier version of Symbolic toolbox

Hi,
Is there any way in which a command with similar functionality as X = sym('x',[2*N,1]); can be worked with an earlier version of Matlab where such commands are not supported..any answer in the right direction will be appreciated.
I currently work on an optimization problem of a throughput model (in commodities). The large number of related variables necessitates me to use symbolic toolbox to create matrices (or arrays) of symbolic vars..Unfortunately, the old version of Matlab is not supporting the command.
thanks,
Hari

Answers (3)

2D symbolic array with size [7 x 5]:
m = 7; n = 5;
[ii,jj] = ndgrid(1:n,1:m);
v = sprintf('x%d%d,',[ii(:),jj(:)]');
X = reshape(sym(['[',v(1:end-1),']']),m,[]);
ADD after Alan Weiss's answer
m = 7; n = 5;
[ii,jj] = ndgrid(1:m,1:n);
s = arrayfun(@(x,y)sprintf('x%d_%d',x,y),ii,jj,'un',0);
X = sym(s);

Categories

Asked:

on 18 Jun 2013

Community Treasure Hunt

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

Start Hunting!