Symbolic math tools allows for analytically process mathematical expressions - without the necessity of assigning specific numeric values to variables.
0
votes
1answer
22 views
Partial derivative with Matlab Symbolic Toolbox for Lagrangian equations of motion
I'm trying to derive Lagrangian equations of motion in Matlab using the symbolic toolbox. This involves partial derivatives of a function and your coordinates, but matlab seems to not accept this.
So ...
0
votes
2answers
41 views
integrate cos(x)*cos(2x)*…*cos(mx) via SAGE
I'm going to find $I_m=\int_0^{2\pi} \prod_{k=1}^m cos(kx){}dx$, where $m=1,2,3\ldots$
Simple SAGE code:
x=var('x')
f = lambda m,x : prod([cos(k*x) for k in range(1,m+1)])
for m in range(1,15+1):
...
2
votes
1answer
31 views
Matlab: “Error using assignin: Attempt to add ”c“ to a static workspace”
I have the following piece of function definition (test code):
function [X,Y,Z] = test(x,y,z)
syms a b c;
a = b + c; % This is where it gets wrong
X=x;
Y=y;
Z=z;
keyboard
% nested functions
...
0
votes
1answer
20 views
Mathematica: integrate symbolic vector function
I wrote a program that defines two piecewise functions "gradino[x_]" and "gradino1[x_]", where x is a vector of m components.
I'm not able to write these functions explicitly using the x_i, I need to ...
1
vote
0answers
14 views
how to use SymbolicC++ in Android NDK?
that's my question simply. i have tried to compile use it but it's not compiling. it 's not finding #include and i have NDK 8d . and I also read http://stackoverflow.com/a/9722190 and i applied . all ...
-2
votes
1answer
45 views
Storing function handles in array and then adding them in MATLAB
I am trying to store function handles in array by running a loop and then adding them.
for i = 1:n^2
x1 = x_coord(elements(i,1));
x2 = x_coord(elements(i,2));
x3 = x_coord(elements(i,3));
...
1
vote
1answer
55 views
Subclass of `type` and `tuple`
For an amusing (and valid but unrelated) reason I want to do the following:
class Head(type, tuple):
pass
But this results in
TypeError: multiple bases have instance lay-out conflict
(on ...
1
vote
3answers
44 views
symbolic system of non linear equation matlab
I'm trying to solve symbolically the following system of equation:
Sys = [...
k1*x - y == 0,...
y - k2*z*w == 0,...
1 - x*k8 - y - w == 0,...
k3*q + k5*q*r - k2*w*z - k4*z*t == 0,...
...
0
votes
1answer
32 views
How to Preallocate memory in Large Symbolic Matrix manipulation in MATLAB
How to Preallocate memory in Large Symbolic Matrix manipulation in MATLAB.
For eg: In code given below size of variable "Toc" and "Tnw" increase in each iteration. I have tried preallocation by Toc ...
0
votes
0answers
41 views
automatic symbolic calculation in R
I have a vector x and a matrix U that conform a vector of solutions:
constants=(31/92,221/46)
U=matrix(c(3/23,-1/23,-19/92,7/46),nrow=2,byrow=T)
The vector of solutions is of the form:
x = ...
0
votes
2answers
44 views
how to convert this solve answer to numeric in MATLAB
i solve symbolic equation:
>> A=sym('[34618-150*w^2,-16502,0,0,0;-16502,31144-150*w^2,-14642,0,0;0,-14642,27018-150*w^2,-12376,0;0,0,-12376,22447-150*w^2,-10071;0,0,0,-10071,10071-150*w^2]')
A ...
1
vote
2answers
23 views
Simplify conditional integrals in SymPy
In SymPy, if I integrate a general Gaussian by:
x = Symbol("x", real=True)
y = Symbol("y", real=True)
s = Symbol("s", real=True)
gaussian = exp(-((x-y)**2)/(2*(s**2)))
nfactor = ...
1
vote
2answers
22 views
Symbolic function for a vector
I want to define a symbolic vector in Matlab, but every element of the vector should be created through a symbolic function.
Let's say f(x)=x^2 is my function and I have a vector A=[1 2 3 4 5]. I ...
1
vote
1answer
28 views
Simplification rule not being applied properly
I'm trying to use Dirac Bra-Ket notation in Maxima using the code from here http://raoul.koalatux.ch/sites/ladderoperator/ladder_operator.html
declare(bra, nonscalar);
declare(ket, nonscalar);
...
0
votes
0answers
30 views
Force Maple to return the result of a matrix calculation without expanding the matrices into their elements?
I am trying to calculate a rather complicated integral symbolically in Maple. The integral I want to calculate is of the form
...
1
vote
1answer
59 views
How to set limits on periodical values in MATLAB?
I have a set of three equations in my script that are fairly simple, yet they use sin and cos values, thus making me to set a limit on them. Below are those equations:
y1 = 23/200 - ...
-1
votes
1answer
21 views
Unable to solve matlab expressions [closed]
Hello I am new to matlab I have problem solving this simple expression
r=10*sin(10)+10*cos(y);
This expression is basically a result of the simple integeral equation I coded but now I am
unable ...
0
votes
1answer
73 views
Matlab: Convert output from symbolic math to float
My question is similar to this question but I believe it to be more general.
I use Matlab's symbolic math toolbox to solve an equation:
MAZ = 0.5;
MAU = 1.0;
XI = 1.0;
ALPHA = 2.0;
DRG = 0.5;
SRG ...
2
votes
1answer
96 views
Sympy Solve( ) Gives Incorrect Answer
I'm using sympy to work through some mathematical models, and I found that for some reason sympy.solve( ) gives me the wrong answers.
import sympy as sm
p, WAA, WAa, Waa = sm.symbols( 'p, WAA, WAa, ...
7
votes
1answer
128 views
Tidy up expression after differentiating
The equations I am working with in this problem contain exponentials. For this reason, after differentiating they appear again pretty much unchanged apart from additional constants and other factors. ...
0
votes
2answers
82 views
Beautifying the output of Matlab aka human-readable form for output?
syms x y z;
solve(x==y+1, y^2==z,z==9)
ans =
x: [2x1 sym]
y: [2x1 sym]
z: [2x1 sym]
and now I want to see the results like Mathematica outputting ...
0
votes
1answer
80 views
Matlab: command check whether positive or negative sign before a term?
I am looking a command that would do:
a*b*c -----> +
-a --------> -
a*b -------> +
c*d*e*f*a--> +
where a, b, c, d, e and f are symbolic variables in Matlab.
Is there any command to ...
0
votes
0answers
39 views
Sympy: unexpected behaviour when simplifying expression with exponentials
I have an expression to simplify like this
-delta*y*exp(lam1*t+lam1) + 2*exp(lam1*t) + delta*y*exp(lam2*t+lam2)
What I do need to get is something like
(-delta*y*exp(lam1) + 2)*exp(lam1*t) ...
1
vote
1answer
473 views
How to extract Symbolic coefficient of TRANSFER FUNCTION in MATLAB
How to extract coefficient in symbolic math MATLAB.
eg, i have transfer function like
H(S) = (a*S^2 + b*S^ + a*c*S + d*a) / (S^3 + b*c*S^2 + d*S^1 + a*d)
I want to get coefficient of 'S' term in ...
1
vote
1answer
22 views
Extract piecewise equation piece in sympy
In sympy I have an integral which returns a Piecewise object, e.g.
In [2]: from sympy.abc import x,y,z
In [3]: test = exp(-x**2/z**2)
In [4]: itest = integrate(test,(x,0,oo))
In [5]: itest
Out[5]: ...
6
votes
2answers
198 views
C# library overloads ^ operator. How to use ** instead?
The Symbolism library overloads arithmetic operators. Although it's written in C# I can use it from F#:
open Symbolism
let x = new Symbol("x")
let y = new Symbol("y")
let z = new Symbol("z")
...
0
votes
1answer
30 views
Symbol matrix function differentiation
1.The function 'diff' seems could only work with one-element variable 'v'
diff(f,v); % f(v), v is a one-lelement variable
while I would like do differentiation on a symbol matrix
diff(F, V); % ...
1
vote
2answers
91 views
Factoring polys in sympy
I'm doing a very simple probability calculations of getting subset of X, Y, Z from set of A-Z (with corresponding probabilities x, y, z).
And because of very heavy formulas, in order to handle them, ...
3
votes
1answer
107 views
Symbolic solution of linear systems in Java
Consider a typical system of equations like the following:
p x + 3 y = 0
2 x + q y = 0
Where p and q are symbols (they do not take values). I want to solve the system with a symbolic expression, ...
0
votes
1answer
65 views
Assigning Numeric Range to MATLAB Symbols
I have constant symbols such as
t = sym('t')
c = sym ('c')
but I have to restrict these symbols with a constraint stating that t is between 0 and 1 (greater equal to zero, smaller equal to one). ...
1
vote
1answer
53 views
Matlab Syntax for Symbolic Solving
I have a symbolic equation equation like
i = 1:n (i=1...n) it takes random values.
G_i = B_i + C_i * D_i and I have B_i, G_i C_i and D_i equaling to some constraints.
I have to simplify a such ...
0
votes
0answers
79 views
MATLAB - Differentiation of “deep” multivariate functions
I have a multivariate function f(x_1,...,x_n) which is a composition of many different functions, hence the adjective "deep".
My goal is to sequentially derive it with respect to all its variables ...
2
votes
1answer
140 views
Solving simple linear algebra equations using symbolic objects with MATLAB
This is probably very simple but I'm having trouble setting up matrices to solve two linear equations using symbolic objects.
The equations are on the form:
(1) a11*x1 + a12*x2 + b1 = 0
(2) a21*x1 + ...
0
votes
0answers
79 views
how to store symbolically the derivatives in matlab
my question relates to the Symbolic Math Toolbox from Matlab. I have the following code:
syms x x_0 u delta sigma_1
mu = sym ('mu(x)');
sigma_u = sym ('sigma(u)');
sigma = sym ('sigma(x)');
f = int ...
2
votes
3answers
280 views
Symbolic math in C# [closed]
I'm creating a GUI where the user can enter a mathematical expression as a string which will then be computed. For instance there could be 2 variables defined, say x and y, where x=2 and y=4. The user ...
2
votes
2answers
128 views
How to write a `lhs()` or `rhs()` function for symbolic expressions on Matlab
I have a symbolic expression in MATLAB with a == operator that I can use in solve(). What I want is to separate out the left hand side and the right hand side of the expression into two separate ...
0
votes
1answer
80 views
Maple plot of algebraic expression
If I write in Maple
AC := Amp*sin(2*Pi/T*t);
then I am able to see the expression in algebraic way. But I can't plot it because T is unset (plotting against t, of course).
If I write
T := ...
2
votes
1answer
62 views
Shift parameter in a Matlab function
Suppose I have defined the symbolic function x -> f(x) in Matlab. How can I define the function x -> f(x+a) starting from f? (here a is a real number)
I have tried g = @(x) f(x+a) but this ...
1
vote
1answer
135 views
MATLAB vpa() doesn't compute variable-point number for expression with exponent?
Trying to use vpa() to compute a variable point number for a rational expression in an exponent:
syms x;
ans1 = x^(12345/67890)
ans2 = vpa(x^(12345/67890),3)
ans2_5 = vpa((12345/67890),3)
ans3 = ...
1
vote
1answer
94 views
MATLAB how do I access a specific coefficient in a symbolic equation system solution?
I need to run a simple Monte Carlo varying coefficients on a system of equations. I need to record the solved coefficient of one of the variables each time.
The following gets me results from a ...
3
votes
2answers
794 views
How to solve Exact Differential Equations in MatLab?
(3x^2+4xy)dx+(2x^2+2y)dy=0
I solve this equation on paper like that:
The Result must be:
f(x,y)=x^3+2x^y+y^2=c-c_1
I want to find f(x,y) function in Matlab. I tried to find it using ...
2
votes
1answer
322 views
Difference equations in Symbolic Toolbox Matlab
Can someone please tell me is there a way to solve difference equation e.g:
y(k) = a1 * y(k-1) + a2 * y(k-2) + b0*u(k)
in Matlab using Symbolic Toolbox? I want to find explicit solution of this ...
1
vote
1answer
126 views
Matlab internal rate of return
You'll have to be easy on me, I am new to matlab and SO. I am having an issue using the matlab solver to calculate internal rate of return(IRR). I saw that the financial toolbox in matlab had a ...
0
votes
1answer
160 views
Use variables in symbolic expressions - matlab
How can I use variables inside a symbolic variable in Matlab?
For example, I have the following code:
function f = constr_fourier(vec);
dim=prod(size(vec));
n=(dim-1)/2;
a=@(k) vec(k+1);
b=@(k) ...
1
vote
2answers
168 views
How to implement this function in mupad (MATLAB)
I want to implement the following function. But I dont know how to define a function over a set of variables such as mu(1), mu(2), mu(3),..., mu(c). c is a numeric symbol (i.e. it is a parameter of ...
0
votes
1answer
420 views
How do I solve a projectile motion physics exercise in C++? Symbolically and numerically? [closed]
Here's example 4.3 from Physics for Scientists and Engineers 5th Edition by Serway:
A long-jumper leaves the ground at an angle of 20.0° above the
horizontal and at a speed of 11.0 m/s.
(a) ...
0
votes
1answer
102 views
Simplifying coefficients of expressions with MATLAB's symbolic toolbox
Suppose I have the following MATLAB code.
syms a b c1 c2
c1 = a + b + pi*b
c2 = a + b + 0.5*b
Then c1 gets evaluated to a + b + pi*b and c2 to a + (3*b)/2
However, I need MATLAB to calculate ...
1
vote
1answer
339 views
Get an error while using factorial function in matlab?
When trying to compute this sequence I get an error
syms n
limit(((-3)^n)/factorial(n),inf)
Error using factorial (line 17)
N must be a matrix of non-negative integers.
Error in (line 9)
How do ...
0
votes
0answers
110 views
How to build SymbolicC++ in Visual C++ 2010 Express
I downloaded the SymbolicC++3 3.35 for Visual C++ package from the SymbolicC++ website.
I opened SymbolicC++3\SymbolicC++3.sln in Visual C++ 2010 Express. The Visual Studio Conversion Wizard starts ...
-1
votes
2answers
984 views
Syms command does not work in my Matlab 2008b
My Matlab is 2008b version
when I give the following command :
x=syms('x')
it return the follwing message :
??? Undefined function or method 'syms' for input arguments of type 'char'.
and the ...






