Azzera filtri
Azzera filtri

Derivative of a function of three variables

2 visualizzazioni (ultimi 30 giorni)
%% Can it be possible to find derivative of 'C' simultaneously with all the variables
syms y S K
C = exp(-y*sqrt(S*K)); CD = diff(C,[y S K])

Risposta accettata

Torsten
Torsten il 26 Mag 2021
Modificato: Torsten il 26 Mag 2021
syms y S K
C(y,S,K) =exp(-y*sqrt(S*K));
g = gradient(C(y,S,K),[y,S,K])

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by