Hallo,
ohne mich in dieses Thema einzuarbeiten nur soviel dazu:
Da Matlab nur nummerisch rechnet, müsstest Du die Parameter schon mit Zahlenwerten belegen.
Im folgenden ist die Matlabhilfe für Funktionen aufgeführt, die das Exponential ausrechnen würden. Wenn Du Zahlenwerte angibst, könnte ich sie eingeben.
help expm
EXPM Matrix exponential.
EXPM(X) is the matrix exponential of X. EXPM is computed using
a scaling and squaring algorithm with a Pade approximation.
Although it is not computed this way, if X has a full set
of eigenvectors V with corresponding eigenvalues D, then
[V,D] = EIG(X) and EXPM(X) = V*diag(exp(diag(D)))/V.
EXPM1, EXPM2 and EXPM3 are alternative methods.
EXP(X) (that’s without the M) does it element-by-element.
See also EXPM1, EXPM2, EXPM3, LOGM, SQRTM, FUNM.
» help expm1
EXPM1 Matrix exponential via Pade approximation.
E = EXPM1(A) is an M-file implementation of the built-in
algorithm used by MATLAB for the matrix exponential.
See Golub and Van Loan, Matrix Computations, Algorithm 11.3-1.
See also EXPM, EXPM2, EXPM3.
» help expm2
EXPM2 Matrix exponential via Taylor series.
E = expm2(A) illustrates the classic definition for the
matrix exponential. As a practical numerical method,
this is often slow and inaccurate.
See also EXPM, EXPM1, EXPM3.
» help expm3
EXPM3 Matrix exponential via eigenvalues and eigenvectors.
E = expm3(A) illustrates one possible way to compute the matrix
exponential. As a practical numerical method, the accuracy
is determined by the condition of the eigenvector matrix.
See also EXPM, EXPM1, EXPM2.