Answered
common multiplicity.or I can't obtain results.
If you have MATLAB R2012a you can use <http://www.mathworks.com/help/toolbox/symbolic/assume.html assume> and <http://www.mathwo...

12 years ago | 0

| accepted

Answered
loop with fzero
This works for me, if I set all variables to numbers: tauA1 = zeros(9, 1); tauA2 = zeros(9, 1); alpha=1; beta=2; gamma=3; p...

12 years ago | 1

| accepted

Answered
Trouble substituting a value into a symbolic expression for use with fplot
The command |fplot| only takes function handles, not symbolic objects. The easiest way to plot symbolic objects is using <http:/...

12 years ago | 4

| accepted

Answered
Entering Non-Linear System of Equations
I am not sure what exactly your program is doing, but you could try this: x = sym('x', [4, 1]) instead of |syms x|. This ...

12 years ago | 1

| accepted

Answered
solve with parameter
Try to avoid |num2str| during calculations. This will convert the input into a string. A string is basically an array of charact...

12 years ago | 0

| accepted

Answered
Problem in creating symbolic function with normcdf
It seems that |normcdf| is not defined for sym objects. You can try to express |normcdf| for syms in a more elementary way, like...

12 years ago | 0

| accepted

Answered
Creating Symbolic Functions
The concept of 'symbolic functions' including the function |argnames| have been introduced in MATLAB 2012a. You cannot use this ...

12 years ago | 0

| accepted

Answered
Problems using the equality indicator in the Symbolic Toolbox. Matlab returns 0 when I check the equality of 2 terms. At the same time it returns 1 for the ratio of the same terms.
That's because '==' compares syntactically and the symbolic expressions still differ a little, though they have the same value w...

12 years ago | 0