set hcol 1002 赤
set hcol 1012 anapaw def
set
opt
xval
dline 0.24 0.24 0.0 250.0
とか
atitle 'x' 'y' ! 220 とか
atitle 'x' 'y' ! 110 とか
hi/pl 147 でIDは出ない。htはanapawのコマンド
al/list
paw faqが強い
set asiz 2.0
set vsiz 1.0
set lfon -60
set ylab 0.6
set xlab 1.6
set xlab 1.2
vec/read temp exp.dat
vec/pri
gra 20 temp temp2
vec/read temp1,temp2,temp3,temp4 exp.dat
hp/err temp1 temp2 temp3 temp4 20 1 0.0 w (cwで綺麗にする)
^^^
点のまわりが消える量
vec/fit temp1 temp2 temp3 test.f77 ! 2 par
vec/create min(2) R 0.980 5.6
vec/read temp1,temp2,temp3,temp4 exp.dat
hp/err temp1 temp2 temp4 temp3 20 1 ! 1cw
vec/create par(2) R 0.978 5.4
vec/create min(2) R 0.975 5.2
vec/create max(2) R 0.981 5.6
vec/create step(2) R 0.001 0.01
vec/fit temp1 temp2 temp3 test.f77 B 2 par step min max
help fun1
fun1 110 test.f77(x) 100 0.0 100.0
fun1はカレントディレクトリにあるもののみしか動作しない
vec/fitは./func/以下とかでもOK
ファイル名と関数名が同じじゃないといけない
ii = 500000
write(*,'(a,$)') '-'
do i = 1, ii
a = sin(real(i+0.1))
enddo
write(*,'(a,a,$)') '\b','\\'
do i = 1, ii
a = sin(real(i+0.1))
enddo
write(*,'(a,a,$)') '\b','|'
do i = 1, ii
a = sin(real(i+0.1))
enddo
write(*,'(a,a,$)') '\b','/'
do i = 1, ii
a = sin(real(i+0.1))
enddo
write(*,'(a,a,$)') '\b','-'
do i = 1, ii
a = sin(real(i+0.1))
enddo
write(*,'(a,a,$)') '\b','_'
名前が同じでないといけない
implicit noneが効かないから先にコンパイルしてチェック
関数名をrealで宣言するのを忘れない
.f .f77はコンパイルされるっぽい
X
Section "Screen"
Option "BackingStore" "Yes"
これで背後のXが描画される
|