how to show big theta266 (3/5/2007 7:04:41 AM) comp.soft-sys.matlab Hi xlable('\theta') can show small theta. But how to show big theta (usually used in showing scattering angle)? thanks in advance. Mike ... Mike
xlim problem in plotyy862 (3/3/2007 2:12:05 AM) comp.soft-sys.matlab Hi, I have xlim problem in plotyy. The limits of x axis are not consistent. The code is following: clear;close all; x = 0:1:180; y1 =x+1; y4 =-2.*x-1; plot(x,y1,'-'); [AX,H1,H2] = plotyy(x,y1,x,y4,'plot'); se... Mike
external procedure635 (2/13/2007 3:55:53 AM) comp.lang.fortran Hi, In the following program, I need to comment the line : " real, external :: func". ============= module T contains real function ex(f,a) real, external :: f ex=f(a) end function ex real func... Mike
Encapsulate130 (1/19/2007 2:11:25 AM) comp.lang.fortran Hi Allow me to repost the following as a question, as I encounter some problem about this: +++++++++++++++++++++++++++++++++++++++++++++++++ Following are the reply by Paulv at the post "Many small programs v... Mike
using optional arguments632 (1/17/2007 12:50:05 PM) comp.lang.fortran Hi I have some problem about using optional arguments in subroutines. The program is: ======================== module a contains subroutine sub(a,b,c) real,optional,intent(in):: a,b,c ! real,optional :: a,b,... Mike
errorbar on both axes155 (1/10/2007 2:14:17 AM) comp.soft-sys.matlab Hi Can I have errorbar on both axes? Errorbar function can only have error on y axis. Please guide me. Thank you very much. Mike ... Mike
portable device to display pdf files3115 (12/14/2006 8:08:14 AM) comp.text.pdf Hi, I'm interested in portable device to display pdf files. Is there anyone who has this experience? What's the best device? How's the resolution? Thanks in advance. Mike ... Mike
check monotony of array values936 (12/11/2006 12:57:35 AM) comp.lang.fortran Hi, Could anyone tell me why the following one has these outputs: in fun 1 -2147483648 ===================== program main real*4 :: a(3)=(/1.,2.,3./) integer :: k k=checkvalueorder(a,3,3) !ftp://stratus.ssec... Mike
how to show big theta266 (3/5/2007 7:04:41 AM) comp.soft-sys.matlab Hi xlable('\theta') can show small theta. But how to show big theta (usually used in showing scattering angle)? thanks in advance. Mike ... acout(157)
xlim problem in plotyy862 (3/3/2007 2:12:05 AM) comp.soft-sys.matlab Hi, I have xlim problem in plotyy. The limits of x axis are not consistent. The code is following: clear;close all; x = 0:1:180; y1 =x+1; y4 =-2.*x-1; plot(x,y1,'-'); [AX,H1,H2] = plotyy(x,y1,x,y4,'plot'); se... acout(157)
Encapsulate130 (1/19/2007 2:11:25 AM) comp.lang.fortran Hi Allow me to repost the following as a question, as I encounter some problem about this: +++++++++++++++++++++++++++++++++++++++++++++++++ Following are the reply by Paulv at the post "Many small programs v... acout(157)
using optional arguments632 (1/17/2007 12:50:05 PM) comp.lang.fortran Hi I have some problem about using optional arguments in subroutines. The program is: ======================== module a contains subroutine sub(a,b,c) real,optional,intent(in):: a,b,c ! real,optional :: a,b,... acout(157)
Many small programs vs. one large program?3545 (1/16/2007 5:24:48 PM) comp.lang.fortran Hi group, I'm having some difficulty successfully writing working (i.e. fully debugged) code if it gets too long. It may be because I have to divide my time between coding and doing other things, but IME by th... sk8terg1rl_2006(160)
check monotony of array values936 (12/11/2006 12:57:35 AM) comp.lang.fortran Hi, Could anyone tell me why the following one has these outputs: in fun 1 -2147483648 ===================== program main real*4 :: a(3)=(/1.,2.,3./) integer :: k k=checkvalueorder(a,3,3) !ftp://stratus.ssec... acout(157)
another internal procedure1151 (11/4/2006 3:11:48 AM) comp.lang.fortran Hi I still don't want to switch to the module. But problems are still coming. program main real a(4) call suba() contains subroutine suba() print *,a call subb() print *,a ... acout(157)
Read Fortran .exe results1141 (11/3/2006 12:47:50 PM) comp.soft-sys.matlab Hi I'd like to store output of some fortran program into matlab and do further works. program main i=1 j=2 print *,i,j end The above compiled one is a.exe. The result is simply 1 2. In matlab I type: [x,... acout(157)
internal procedure1142 (11/3/2006 12:06:04 PM) comp.lang.fortran Hi, I have questions about internal procedure. program main i=1 call suba() contains subroutine suba() print *,i call subb() end subroutine suba subroutine subb() print *,i end subroutine subb end This... acout(157)
defaultlib "libc.lib" conflicts with852 (10/19/2006 1:03:32 AM) comp.lang.fortran Hi, I link a library "A.lib". Error message shows as following: LINK : warning LNK4098: defaultlib "libc.lib" conflicts with use of other libs; use /NODEFAULTLIB:library When I use /nodefaultlib:libc.lib in... acout(157)