photo

Stefan Wehmeier

MathWorks

2011년부터 활동

Followers: 0   Following: 0

메시지

Working on the symbolic toolbox, mostly in the MuPAD language. Responsible for solvers and simplifiers.
Professional Interests: computer algebra

통계

All
MATLAB Answers

0 질문
24 답변

Cody

0 문제
22 답안

순위
871
of 301,513

평판
90

참여
0 질문
24 답변

답변 채택
0.00%

획득한 표
15

순위
 of 21,312

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
23,498
of 175,031

참여
0 문제
22 답안

점수
230

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 3
  • Knowledgeable Level 2
  • First Answer
  • Solver

배지 보기

Feeds

보기 기준

답변 있음
How to stop MATLAB livescript from simplifying the answer?
Use sympref('AbbreviateOutput', false)

대략 8년 전 | 3

| 수락됨

답변 있음
These equations have an answer - how to get solve to find it?
Why not just solve(expression1 == expression2, u) ? What you did is to confuse assignemnts/assumptions with equations. You ...

8년 초과 전 | 0

답변 있음
Function Iteration for n times, but n is NOT a fixed number
Why don't you make your last source code the body of a function? Is l at any time called with non-constant argument, such that y...

8년 초과 전 | 0

답변 있음
an error in new versions? triognometric function of A*t
It is a matter of taste if you prefer results in terms of exp or sin. You could do simplify(rewrite(A1, 'sin'))

8년 초과 전 | 1

| 수락됨

답변 있음
Symbolic toolbox mpower unexpected behaviour
You can use symbolic N but not in connection with mpower. As T^N = exp(N*log(T)), write TN = expm(N*logm(T)) and procee...

거의 9년 전 | 1

| 수락됨

답변 있음
mupad command calling from matlab produce wrong results
I cannot reproduce this. In any case, you cannot work with intervals in MATLAB; this is why poles(f) gives you just the ...

거의 9년 전 | 0

답변 있음
Why does eig(A) not return a symbolic array for my symbolic matrix A?
The roots of polynomials of degree > 4 usually do not have a symbolic representation. The same holds for eigenvalues as they are...

거의 11년 전 | 0

| 수락됨

답변 있음
Simplify expression with exponential function.
Use exp(sym(1))

거의 11년 전 | 2

| 수락됨

답변 있음
Parametric solutions to system of equations inequations via solve()
I see that you are using R2014a. Then your only option is to solve for one variable solve(e(1) == 0, a) and take this as...

11년 초과 전 | 0

| 수락됨

답변 있음
subs(a,b,1) introduces variable b into a?
I cannot reproduce this. If it happens (in which version ??), then it is clearly unexpected.

11년 초과 전 | 0

답변 있음
Problems with matlab symbolic dsolve function
The correct syntax is syms y(x) dsolve(diff(y, x, x) +y==x*exp(-x^2)) as it declares y as a function of x (and not of...

11년 초과 전 | 0

답변 있음
Matlab 2012b too slow when solving a system of two equations on mupadmex(statement)
A running time of one hour can be normal if the equations are very complicated. Since your code does not run as it stands, it is...

11년 초과 전 | 0

답변 있음
Symbolic array pre-allocation
My question is in which form do you have the 50000 entries you want to fill in. As strings in a cell array A? Then B = cell...

11년 초과 전 | 0

| 수락됨

답변 있음
Find conditions such that symbolic expression is real-valued
a) feval(symengine, 'solve', a*x^2 + b*x + c, x, 'Real', 'IgnoreSpecialCases') You may omit the IgnoreSpecialCases, whic...

거의 14년 전 | 0

| 수락됨

답변 있음
simplifying symbolic expression in terms of other variables
You could also try syms a b x assume(x== a+b); F = a^2+b^2+2*a*b+a+b+1; simplify(F)

거의 14년 전 | 2

| 수락됨

답변 있음
Can you turn off all simplifications?
It's a bit tricky. hold(4/6) will not help you because 4/6 -> 2/3 is done by the parser. You will have to define "frozen" forms ...

거의 14년 전 | 1

답변 있음
Square root of a polynomial over gf
You will have to do it by hand, that is, use polylib::sqrfree and divide all multiplicities by 2. These multiplicities are in th...

대략 14년 전 | 0

| 수락됨

답변 있음
Factorize transfer function
Don't know how to do it using tf, but you can do syms s Suu = -1.6/((s-4)*(s+4)) Sux = -0.8/((s+4)*(s-4)*(s^2 + 0.1*s...

대략 14년 전 | 1

| 수락됨

답변 있음
How to solve this equation
This is a recurrence equation and thus has to declared as such using rec(...). eq = evalin(symengine, 'rec(f(x)=h0*f(x)+h1...

대략 14년 전 | 0

답변 있음
irreducibility test
You have to declare it as a polynomial over GaloisField, e.g. F = evalin(symengine, 'poly(x^2-2, Dom::GaloisField(5^7))) ...

대략 14년 전 | 2

답변 있음
Problem Solving Symbolic Inequalities
Note that by default solve is in complex mode, i.e., you are looking for all solutions within the complex numbers. Try solu...

대략 14년 전 | 0

| 수락됨

답변 있음
Symbolic substitution to eliminate variables without solving for the explicit expressions
The second system, too, can be solved. You will have to work on the MuPAD Notebook level or use feval(symengine, ...) though bec...

14년 초과 전 | 1

| 수락됨

답변 있음
Solving a sine-cosine equation ( Warning: Explicit solution could not be found.)
There is no closed-form symbolic solution for general n, and for given n nobody can say which solutions are between -5 and 5 wit...

14년 초과 전 | 0

답변 있음
"solve" cannot find analytic solution to a large multi-equation system, unless one is willing to break up the system and solve the parts sequentially
Hi Tamas, this works in newer versions of the symbolic toolbox (R2011a) as we have added some heuristics for systems containing...

대략 15년 전 | 1

| 수락됨