Читать книгу Applied Numerical Methods Using MATLAB - Won Y. Yang - Страница 38

1.3.4 To Avoid Runtime Error

Оглавление

A good program guides the program users who do not know much about the program and at least give them a warning message without runtime error for their minor mistake. If you do not know what runtime error is, you can experience one by taking the following steps:

function m=<b>fctrl</b><![CDATA[(n) if n<0, error('The factorial of negative number ??'); else m=1; for k=2:n, m=m*k; end end

1 Make and save the following routine ‘ fctrl()’ in an M‐file named “fctrl.m” in a directory listed in the MATLAB search path.

2 Type fctrl(‐1) into the MATLAB Command window. Then you will see>fctrl1(-1) ans = 1

This seems to imply that (−1)! = 1, which is not true. It is caused by the mistake of the user who tries to find (−1)! without knowing that it is not defined. This kind of runtime error seems to be minor because it does not halt the process. But it needs special attention for it may not be easy to detect. If you are a good programmer, you will insert some error handling statements in the function ‘ fctrl()’ as above. Then, when someone happens to execute fctrl(‐1) in the Command window or through an M‐file, the execution stops and he will see the error message in the Command window as

Error using fctrl (line 2) The factorial of negative number ??

This shows the error message (given as the input argument of the ‘ error()’ routine) together with the name of the routine in which the accidental ‘error’ happens, which is helpful for the user to avoid the error.

Most common runtime errors are caused by an ‘out of domain’ index of array and the violation of matrix dimension compatibility, as illustrated in Section 1.1.7. For example, consider the ‘ Gauss(A,B)’ routine in Section 2.2.2, whose job is to solve a system of linear equations Ax=B for x. To appreciate the role of the fifth line handling the dimension compatibility error in the routine, remove the line (by putting the comment mark % before the line in the M‐file defining ‘ Gauss()’) and type the following statements in the Command window:

>A=rand(3,3); B=rand(2,1); x=Gauss(A,B) Index exceeds matrix dimensions. Error in Gauss (line 10) AB=[A(1:NA,1:NA) B(1:NA,1:NB)]; % Augmented matrix

Then MATLAB gives you an error message together with the suspicious statement line and the routine name. But it is hard to figure out what caused the runtime error and you may get nervous lest the routine should have some bug. Now, restore the fifth line in the routine and type the same statements in the Command window:

>x=Gauss(A,B) Error using Gauss (line 8) A and B must have compatible dimension

This error message (provided by the programmer of the routine) helps you to realize that the source of the runtime error is the incompatible matrices/vectors A and B given as the input arguments to the ‘ Gauss()’ routine. Very like this, a good program has a scenario for possible user mistakes and fires the ‘ error’ routine for each abnormal condition to show the user the corresponding error message.

Many users often give more/fewer input arguments than supposed to be given to the MATLAB functions/routines and sometimes give wrong types/formats of data. To experience this type of error, let us try using the MATLAB function ‘ sinc1(t,D)’, that is defined in an M‐file named “sinc1.m” as

function x=<b>sinc1</b><![CDATA[(t,D) if nargin<2, D=1; end %t(find(t==0))=eps; x=sin(pi*t/D)./(pi*t/D);

to plot the graph of a sinc function

(1.3.6)

With this purpose, type the following statements in the Command window:

D=0.5; b1=-2; b2=2; t=b1+[0:100]/100*(b2-b1); subplot(221), plot(t,sinc1(t,D)), axis([b1 b2 -0.4 1.2]) hold on, plot(t,sinc1(t),'r:')

The two plotting commands ‘ sinc1(t,D)’ and ‘ sinc1(t)’ yield the solid and dotted line graphs, respectively, as shown in Figure 1.7a where it should be noted that ‘ sinc1()’ does not bother us and works fine even without the second input argument D. We owe the second line in the function ‘ sinc1()’ for the nice error‐handling service:


Figure 1.7 Graphs of sinc functions. Using ‘ sinc1()’ without division‐by‐zero handling (a) and with division‐by‐zero handling (b).

if nargin<2, D=1; end

This line takes care of the case where the number of input arguments ( nargin) is <2, by assuming that the second input argument is D=1 by default. This programming technique is the key to making the MATLAB functions adaptive to different number/type of input arguments, which is very useful for adding the user‐convenience into the MATLAB functions. To appreciate its role, we remove the second line or deactivate it by putting the comment mark % in the beginning of the line in the M‐file defining ‘ sinc1()’, and type the same statement in the Command window, trying to use ‘ sinc1()’ without the second input argument.

>plot(t,sinc1(t),'k:') Not enough input arguments. Error in sinc1 (line 4) x=sin(pi*t/D)./(pi*t/D);

This time we get a serious error message with no graphic result. It is implied that the MATLAB function without appropriate error‐handling capability does not allow the user's default or carelessness.

However, you may feel annoyed by the hole at t = 0 in the graphs shown in Figure 1.7a. What caused such an ‘accident of hole’? It happened (with no warning message about ‘division‐by‐zero’) because not only the denominator but also the numerator of Eq. (1.3.6) becomes for t = 0 to make the value of Eq. (1.3.6) NaN (not a number : undetermined) while the true value of the sinc function at t = 0 is sinc(0) = 1 as obtained by applying the L'Hopital's rule [W-7]. To avoid the ‘accident of hole’ due to the NaN problem, activate the third line (in ‘ sinc1()’) by deleting the comment mark % in the beginning of the line where the third line is another error‐handling statement:

t(find(t==0))=eps; or equivalently, for i=1:length(t), if t(i)==0, t(i)=eps; end, end

This statement changes any zero entry in the t vector into eps (2.2204e − 16). What is the real purpose of this statement? It is actually to remove the possibility of division‐by‐zero in the next statement, which is a mathematical expression having t in the denominator:

x=sin(pi*t/D)./(pi*t/D);

Using the modified function ‘ sinc1()’ with the third line activated, you will get the graphs with no hole like Figure 1.7b.

Lastly, consider of the fourth line in ‘ sinc1()’, which is only one essential statement performing the main job:

x=sin(pi*t/D)./(pi*t/D);

What is the dot ( .) before division operator (/) for? Regarding this, authors gave you a piece of advice that you had better put a dot ( .) just before the arithmetic operators *(multiplication), /(division), and ̂(power) in the function definition so that the element‐by‐element (elementwise or termwise) operation can be done any time (Section 1.1.6 (A7)). To appreciate the existence of the dot ( .), we remove it from the M‐file defining ‘ sinc1()’, and run the following statements:

>clf, plot(t,sinc1(t,D)), sinc1(t,D), sin(pi*t/D)/(pi*t/D) ans = -0.0183

What do you see in the graphic window on the screen? To our surprise, nothing appears and that with no warning message! What is more surprising, the value of sinc1(t,D) or sin(pi*t/D)/(pi*t/D) shows up as a scalar. It is hoped that this accident will help you realize how important it is for right term‐by‐term operations to put dot ( .) before the arithmetic operators *, /, and ̂. By the way, aren't you curious about how MATLAB deals with a vector division without dot ( .)? If so, try with the following statements:

>A=[1:10]; B=2*A; A/B, A*B'*(B*B')̂-1, A*pinv(B) ans = 0.5

To understand this response of MATLAB, you can see Section 1.1.7 or 2.1.2.

In this section, we looked over several sources of runtime error, hoping that it aroused reader's attention to runtime errors.

Applied Numerical Methods Using MATLAB

Подняться наверх