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 件のコメント

Dimitris Kalogiros
Dimitris Kalogiros 2018 年 9 月 3 日
I'm afraid that you have to rewrite your question with a more comprehensive way.
Arvind Sharma
Arvind Sharma 2018 年 9 月 3 日
i am providing you doc file

サインインしてコメントする。

 採用された回答

madhan ravi
madhan ravi 2018 年 9 月 3 日
編集済み: madhan ravi 2018 年 9 月 3 日

1 投票

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 件のコメント

Arvind Sharma
Arvind Sharma 2018 年 9 月 3 日
i have attached new file to make easier for you
madhan ravi
madhan ravi 2018 年 9 月 3 日
check now

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by