Question


plot the graph program
program l=6330*(10)^(-10); k0=2*pi/l; np=1.50; n0=1.3707; n1=1.3; n2=1.59; n3=1.45; n4=3.46; na=1.36; t1=2.10e-6; ...

4 years ago | 0 answers | 0

0

answers

Answered
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...

4 years ago | 0

| accepted

Question


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; ...

4 years ago | 2 answers | 0

2

answers

Question


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; ...

4 years ago | 0 answers | 0

0

answers

Question


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

4 years ago | 0 answers | 0

0

answers

Answered
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...

4 years ago | 0

Question


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...

4 years ago | 1 answer | 0

1

answer

Question


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...

4 years ago | 1 answer | 0

1

answer

Question


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=...

4 years ago | 1 answer | 0

1

answer

Question


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...

4 years ago | 1 answer | 0

1

answer

Question


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...

4 years ago | 1 answer | 0

1

answer

Question


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...

4 years ago | 0 answers | 0

0

answers

Question


matlab program for metal
pl code in matlab transfer matrix method

4 years ago | 1 answer | 0

1

answer

Question


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 ...

4 years ago | 1 answer | 0

1

answer

Question


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...

4 years ago | 2 answers | 0

2

answers

Question


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)...

4 years ago | 1 answer | 0

1

answer