Can anyone please help how to simulate closed form expression in Matlab?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dhawal Beohar
le 9 Nov 2020
Commenté : Dhawal Beohar
le 9 Nov 2020
How to simulate closed form expression in Matlab?
5 commentaires
Réponse acceptée
Walter Roberson
le 9 Nov 2020
Ten = sym(10);
N_0 = Ten^sym(-11.4);
PmaxdB = sym(15);
Pmax = Ten.^(PmaxdB/Ten);
syms gamma Qu
assume(Qu < 0)
QoS_Component_u = Ten.^(Qu);
u = QoS_Component_u;
Q = -1/u * log(int(exp(-u*(Pmax*gamma + N_0))*exp(-gamma), gamma, 0, inf));
Qs = simplify(Q);
disp(char(Qs))
disp(char(vpa(Qs,5)))
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

