已回答
program is not working
this is the answer function shiv5 %K0= (2*pi/1530)*1e6:(2*pi/10)*1e6:(2*pi/1630)*1e6; K0= linspace((2*pi/1530)*1e6,(2*pi/16...

3 years 前 | 0

| 已接受

提问


program is not working
function shiv5 K0= (2*pi/1530)*1e6:(2*pi/10)*1e6:(2*pi/1630)*1e6; for j=1:numel(K0) k0 = K0(j); p0 = 0.5; ...

3 years 前 | 2 个回答 | 0

2

个回答

提问


solve the equation reflectivity vs wavenumber plot
function kps5 K0 = 1550e-6:1e-6:1600e-6; for j=1:numel(K0) k3 = K0(j); p0 = 0.5; p1 = 1; p2 = 1.5; ...

3 years 前 | 0 个回答 | 0

0

个回答

提问


navier stokes equation solver
pl solve the navier stokes method using finite element using galekian method

3 years 前 | 0 个回答 | 0

0

个回答

已回答
transcedental equation solve by muller method
function kps3 p0 = 0.5; p1 = 1; p2 = 1.5; TOL = 10^-8; N0 = 100; format long h1 = p1 - p0; h2 = p2 - p1; DELTA1 = (f...

3 years 前 | 0

提问


solution of equation code of transcedental equation
function kps3 p0 = 0.5; p1 = 1; p2 = 1.5; TOL = 10^-8; N0 = 100; format long h1 = p1 - p0; h2 = p2 - p1; DELTA1 = (f...

3 years 前 | 1 个回答 | 0

1

个回答

提问


solution of transcedental equation
function beta1 = trial0(beta, eps1, eps2, epsm,k0,h) S1 = sqrt(power(beta,2)-(eps1*power(k0,2))); S2 = sqrt(power(beta,2)-(eps...

3 years 前 | 1 个回答 | 0

1

个回答

已解决


Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...

3 years 前

提问


multiply by two matrix
Mj = [cos (kj hj) i*sin(kj hj) /kj ; i*kj*sin(kj hj) cos (kj hj) ]; kj=sqrt(nj^2*k02-x^2); Take n1=1.521;n2=2.66;k0=...

3 years 前 | 1 个回答 | 0

1

个回答

提问


matrix multiplication and root finding
Mj=[cos (kj hj) i*sin(kj hj) /kj ; i*kj*sin(kj hj) cos (kj hj) ]; kj=sqrt(nj2*k02-x2); Take n1=1.521;n2=2.66;k0=1;h...

3 years 前 | 0 个回答 | 0

0

个回答

提问


last value of array
while solving diff equation what is the last value of column vector and graph between n vs x %plot n vs x n vs y for n=1:10...

3 years 前 | 1 个回答 | 0

1

个回答

提问


how to solve equation
V*sqrt(1-b)=m*pi+atan(b/1-b)+atan(a+b/1-b) % where ns=1.40; nc=1.45; nf=1.5; % where a=(ns^2-nc^2)/(nf^2-ns^2) b=(neff^2-ns...

3 years 前 | 0 个回答 | 0

0

个回答

提问


matlab program for metal
pl code in matlab transfer matrix method

3 years 前 | 1 个回答 | 0

1

个回答

提问


plot the equation graph
how to plot graph V vs x equation is V*sqrt(1-x)=m*pi+atan((x)/(1-x))+atan((a+x)/(1-x)) taking V=1:10 m=0 a=1; then plot ...

3 years 前 | 1 个回答 | 0

1

个回答

提问


roots finding using muller method
only one root is showing suppose f(x)=x^2+1 only -i root is showing not +i here this is program of muller method function shik...

3 years 前 | 2 个回答 | 0

2

个回答

提问


how to plot by varying initial conditions
%plot n vs x n vs y for n=1:10 [t,r]=ode45(@fn,[0 140],[0.01+n 0.01 ]) plot (n,r(:,1)) end function dr=fn(t,r) x=r(1)...

3 years 前 | 1 个回答 | 0

1

个回答