[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Plotting problem
From: |
John W. Eaton |
Subject: |
Plotting problem |
Date: |
Mon, 17 Aug 2009 14:51:28 -0400 |
On 17-Aug-2009, William Miner wrote:
| fin1:Octave williamminer$ test_plot.m
| -bash: test_plot.m: command not found
| fin1:Octave williamminer$
You probably need to do
chmod +x test_plot.m
./test_plot.m
or, put the directory where test_plot.m is in your shell's PATH (but I
would not recommend adding '.' to your path).
Also, the plot may disappear quickly unless you add a sleep or pause
to the end of your script.
jwe