Error in defined expression for Fresnel equation in matlab ( please )?

AI Thread Summary
The discussion revolves around an error encountered in MATLAB when trying to plot the Fresnel equation due to an undefined variable 'plotopt'. The user is trying to understand how to properly define 'plotopt' to specify plotting options like reflectivity or absorptivity. It is clarified that 'plotopt' is a parameter in the 'fresnelplot' function, which must be defined before calling the function. The solution involves copying the function code from a specified link into a new file named 'fresnelplot.m' and ensuring that the user inputs the necessary parameters, including 'plotopt', when calling the function. Proper usage of the function will resolve the error and allow for successful plotting of the Fresnel equations.
error 401
Messages
19
Reaction score
0
error in defined expression for Fresnel equation in MATLAB (urgent please )??

hi

i have code for plotting Fresnel equation but there's something i didn't understand it and gives
error >>(((

plotopt - plotting option (type 'R' for plotting reflectivity,
% 'A' for absorptivity or 'RA' for both)

))))

any body can explain what should i do .. and how can i define (plotopt ) ? thanks in advance !

the total code ((


thetadeg = (0:0.1:90);
theta = thetadeg*pi/180;

[a,b,c] = intrc(n1,n2,k2,theta);

if nargin<4 || isempty(plotopt)
fprintf('No plotting option specified. Type \''help fresnelplot\'' for further details.\n');
return;
end;
if nargin==4
if ischar(plotopt)
switch plotopt
case {'R','r'}
plot(thetadeg,a,thetadeg,b,thetadeg,c)
legend('Rs','Rp','R','Location','northwest');
xlabel('Angle of incidence \theta');
ylabel('Reflectivity');
case {'A','a'}
plot(thetadeg,1-a,thetadeg,1-b,thetadeg,1-c)
legend('As','Ap','A','Location','northwest');
xlabel('Angle of incidence \theta');
ylabel('Absorptivity');
case {'RA','ra','AR','ar'}
subplot(2,1,1)
plot(thetadeg,a,thetadeg,b,thetadeg,c)
legend('Rs','Rp','R','Location','northwest');
xlabel('Angle of incidence \theta');
ylabel('Reflectivity');
subplot(2,1,2)
plot(thetadeg,1-a,thetadeg,1-b,thetadeg,1-c)
legend('As','Ap','A','Location','northwest');
xlabel('Angle of incidence \theta');
ylabel('Absorptivity');
otherwise
fprintf('%s is not a valid option. Type \''help fresnelplot\'' for further details.\n',plotopt);
end;
else fprintf('Option must be a string. Type \''help fresnelplot\'' for further details.\n');
end;
end;
))
 
Physics news on Phys.org


It looks to me like the above is the body of a function with parameters for plotopt and nargin.

Your code is using these values without ever having set them to known values.
 


i am using MATLAB 2009 . and gives the error (( ? Undefined function or variable 'plotopt'.))...
 


Mark44 said:
It looks to me like the above is the body of a function with parameters for plotopt and nargin.

Your code is using these values without ever having set them to known values.

error 401 said:
i am using MATLAB 2009 . and gives the error (( ? Undefined function or variable 'plotopt'.))...
That's what I'm saying. The code you show refers to plotopt (and nargin) and MATLAB doesn't know what these are.

In post 1, you wrote "the total code". What you show is NOT the total code - it's missing a definition of plotopt.

Where did you get this code?
 


Your plotop is input from the user.
type 'R' for plotting reflectivity,
'A' for absorptivity
or 'RA' for both
 


how can i use this in code ?
 


The link you gave was to an "m file", a file that defines a function that is called by other MATLAB code.

Look in the MATLAB documentation for how to call a function that is defined in another file.

The part that you left out in your post is shown below.

Code:
function fresnelplot(n1,n2,k2,plotopt)
%
% fresnelplot(n1,n2,k2,plotopt) 
% 
% plots the Fresnel reflectivities and/or absorptivities (s-pol, p-pol 
% and circ.) for light incident from a dielectric medium with 
% refractive index n1 on an opaque absorbing medium with complex refractive 
% index n2+i*k2.
%
% Input:  n1      - refractive index (medium 1)
%         n2      - refractive index (medium 2)
%         k2      - extinction coefficient (medium 2)
%         plotopt - plotting option (type 'R' for plotting reflectivity,
%                   'A' for absorptivity or 'RA' for both)
%
% Output: plots of reflectivities and/or absorptivities
%
% Last updated: 2011-10-26 (David Bergström)
%
 


he says >>

plotopt - plotting option (type 'R' for plotting reflectivity,
'A' for absorptivity or 'RA' for both)

...

i know about m-file already !. but there's no function called (plotting option ) .so the problem is how can i use this in matlab. what is the function should i use for ?
on other hand there's no m-file attached , and i don't know the code for make a new one !
 
  • #10


error 401 said:
he says >>

plotopt - plotting option (type 'R' for plotting reflectivity,
'A' for absorptivity or 'RA' for both)

...

i know about m-file already !. but there's no function called (plotting option )
plotopt is not a function. It is a parameter in the fresnelplot function.
error 401 said:
.so the problem is how can i use this in matlab. what is the function should i use for ?
Open the link you posted (http://www.mysimlabs.com/matlab/auxiliary/fresnelplot.m ).
Copy the code at this link into any editor (Notepad or whatever).
Save to a file named fresnelplot.m in your MATLAB working directory.

Your MATLAB code that uses the fresnelplot function should look something like this:
Code:
n1 = input("Enter refractive index for medium 1")
n2 = input("Enter refractive index for medium 2")
k2 = input("Enter extinction coefficient for medium 2")
plotopt = input("Enter plot option")

fresnelplot(n1, n2, k2, plot)
.
.
.
For the plot option, you can enter R, A, RA, or AR.
error 401 said:
on other hand there's no m-file attached , and i don't know the code for make a new one !
 
Back
Top