Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions pages/linux/qtgrace.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# qtgrace

> Display, plot, analyze 2D data.
> A Qt reimplementation of Grace (https://plasma-gate.weizmann.ac.il/Grace/), sharing its command-line interface.
Comment thread
ivanbaluta marked this conversation as resolved.
Outdated
> More information: <https://sourceforge.net/projects/qtgrace/>.

- Get more information on command-line arguments (press q to quit) :

`qtgrade -help | less`
Comment thread
ivanbaluta marked this conversation as resolved.
Outdated

- Plot one or more data files, plotting only the first two colums in each file as X Y :

Check failure on line 11 in pages/linux/qtgrace.md

View workflow job for this annotation

GitHub Actions / codespell

colums ==> columns
Comment thread
banana-bred marked this conversation as resolved.
Outdated

`qtgrace {{path/to/file1.dat path/to/file2.dat ...}}`

- Plot one or more data files, plotting all columns in each file as X Y1 Y2 ... :

`qtgrace {{-nxy path/to/file1.dat -nxy path/to/file2.dat ...}}`

- Plot one or more data files with a logarithmically scaled x-axis :

`qtgrace -log x {{file1.dat file2.dat ...}}`
Comment thread
ivanbaluta marked this conversation as resolved.
Outdated

- Plot a data file with a logarithmic scale on both axes, with data formatted as X Y DY :

`qtgrace -log xy -settype xydy {{file.dat}}`
Comment thread
ivanbaluta marked this conversation as resolved.
Outdated
Loading