Evaluating Function at Matrix ?

2 Ansichten (letzte 30 Tage)
Omar B.
Omar B. am 26 Jan. 2020
Kommentiert: Omar B. am 26 Jan. 2020
How can we evaluate the following function at matrix A?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 26 Jan. 2020
F = @(x) exp(5*pi*(x-0.5)./(7*0.5)) .* (cos(5*pi*(x-0.5)./(7*0.5)) - sin(5*pi*(x-0.5)./(7*0.5)));
A = randn(11,5);
F(A)
  2 Kommentare
Walter Roberson
Walter Roberson am 26 Jan. 2020
The funm((),@sin) is certainly not right as you must pass a matrix as the first argument.
The rest looks doubtful, but I suppose there could be a context under which something like that was appropriate.
Note though that the formula involves x-.5 which involves subtracting .5 from every element of x, not just from the diagonal of x. If you are going to say that represents matrix exponential, then you must assume that it already has any matrix vs scalar corrections applied.
Omar B.
Omar B. am 26 Jan. 2020
Thank you so much.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by