reflection coeff. value
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Arvind Sharma
le 3 Sep 2018
Commenté : madhan ravi
le 3 Sep 2018
how to solve this equation n=[1 2 3 4 5 6]; kz=2*pi*n(i) equation RTE=( Kz,i-kz,i+1)/(Kz,i+kz,i+1); how to solve RTE
2 commentaires
Dimitris Kalogiros
le 3 Sep 2018
I'm afraid that you have to rewrite your question with a more comprehensive way.
Réponse acceptée
madhan ravi
le 3 Sep 2018
Modifié(e) : madhan ravi
le 3 Sep 2018
Maybe try the following:
n=[1 2 3 4 5 6];
ki=2.*pi.*n
k=1.2
kz=sqrt((ki.^2-k.^2))
for i= 1:length(kz)-1
RTE(i)=(kz(i)-kz(i+1))/(kz(i)+kz(i+1));
end
RTE
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Numerical Integration and Differential Equations 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!