Gnuplot용 배치 파일 만들기

Gnuplot용 배치 파일 만들기

Gnuplot용 일련의 특공대가 포함된 배치 파일을 만들고 Gnuplot에서 실행하려면 어떻게 해야 합니까? 예를 들어 함수 정의, x축 및 y축 설정 설정, 출력 설정 등을 수행하여 Gnuplot을 실행하고 이 파일을 실행하면 즉시 그래프를 얻을 수 있습니다. 미리 읽어주셔서 감사합니다.

답변1

아래는 발췌한 내용입니다.http://people.duke.edu/~hpgavin/gnuplot.html:

6. 스크립트 파일

특정 플롯을 생성하기 위해 여러 개의 명령을 입력하는 경우가 있는데, 명령을 입력할 때 오타가 발생하기 쉽습니다. 플로팅 작업을 간소화하기 위해 여러 Gnuplot 명령을 단일 스크립트 파일로 결합할 수 있습니다. 예를 들어, 다음 파일은 힘 편향 데이터의 사용자 정의된 표시를 생성합니다.

  # Gnuplot script file for plotting data in file "force.dat"
  # This file is called   force.p
  set   autoscale                        # scale axes automatically
  unset log                              # remove any log-scaling
  unset label                            # remove any previous labels
  set xtic auto                          # set xtics automatically
  set ytic auto                          # set ytics automatically
  set title "Force Deflection Data for a Beam and a Column"
  set xlabel "Deflection (meters)"
  set ylabel "Force (kN)"
  set key 0.01,100
  set label "Yield Point" at 0.003,260
  set arrow from 0.0028,250 to 0.003,280
  set xr [0.0:0.022]
  set yr [0:325]
  plot    "force.dat" using 1:2 title 'Column' with linespoints , \
        "force.dat" using 1:3 title 'Beam' with points

그런 다음 다음 명령을 사용하여 전체 플롯을 생성할 수 있습니다.gnuplot> load 'force.p'

파일은 force.dat다음과 같습니다.

  # This file is called   force.dat
  # Force-Deflection data for a beam and a bar
  # Deflection    Col-Force       Beam-Force 
  0.000              0              0    
  0.001            104             51
  0.002            202            101
  0.003            298            148
  0.0031           290            149
  0.004            289            201
  0.0041           291            209
  0.005            310            250
  0.010            311            260
  0.020            280            240

다음을 살펴보십시오.원천더 많은 정보와 더 나은 설명을 원하시면.

관련 정보