NCCOOS Trac Projects: Top | Web | Platforms | Processing | Viz | Sprints | Sandbox | (Wind)

root/gliderproc/trunk/MATLAB/opnml/mat4/lcontour2.m

Revision 495 (checked in by cbc, 11 years ago)

Initial import of Stark code.

Line 
1 % LCONTOUR2
2 %
3 % STOP STOP STOP STOP
4 %
5 % In MATLAB5.0, the name of LCONTOUR2 has been changed to LCONTOUR4.
6 % LCONTOUR4 is a MATLAB5.0-compatible version of the MATLAB 4 routine
7 % LCONTOUR2 and has EXACTLY the same calling sequence. You MUST
8 % use LCONTOUR4.  (The MATLAB5.0-compliant version is called LCONTOUR.
9 % Type "help lcontour" for how it is called.)
10 %
11 % The call that used to look like:
12 %        h=lcontour2(elems,x,y,Q,cval,p1,v1,p2,v2,...)
13 % now needs to look like:
14 %        h=lcontour4(elems,x,y,Q,cval,p1,v1,p2,v2,...)
15 %
16 % Sorry, but this is unavoidable and terminal !!
17
18 function chandle=lcontour2(elems,x,y,Q,cval,p1,v1,p2,v2,p3,v3,p4,v4,...
19                                             p5,v5,p6,v6,p7,v7,p8,v8)
20 disp(' STOP   STOP   STOP')
21 disp(' In MATLAB5.0, the name of LCONTOUR2 has been changed to LCONTOUR4. ')
22 disp(' LCONTOUR4 is a MATLAB5.0-compatible version of the MATLAB 4 routine ')
23 disp(' LCONTOUR2 and has EXACTLY the same calling sequence. You MUST ')
24 disp(' use LCONTOUR4. ')
25 disp(' ')
26 disp(' The call that used to look like:')
27 disp(' ')
28 disp('         h=lcontour2(elems,x,y,Q,cval,p1,v1,p2,v2,...)')
29 disp(' ')
30 disp(' now needs to look like:')
31 disp('         h=lcontour4(elems,x,y,Q,cval,p1,v1,p2,v2,...)')
32 disp(' ')
33 disp('  Sorry, but this is unavoidable and terminal !!')
34 disp(' ')
35 return
36
Note: See TracBrowser for help on using the browser.