MATLAB: How to use function equationTomatrix in matlab2012 b.? it shows error for following code

Extended Symbolic Math ToolboxMATLABsymbolicSymbolic Math Toolbox

I have following symbolic variables
% T1 T2 T3
T = sym('T',[1 3])
Eqn = 3*T(1) – 5*T(2) + 2*T(3)==5
[A b]= EquationTomatrix(Eqn,T)

Best Answer

The routine name is equationsToMatrix with a lower-case 'e' and with plural 'equations'
Related Question