help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: No Java support found


From: Pantxo
Subject: Re: No Java support found
Date: Wed, 4 Jul 2018 12:18:09 -0700 (MST)

turbofib wrote
> ...
> warning: fopen: 'c:\titan\reports\Live Dax 5Min Tf Intra.txt' found by
> searching load path
> 
> i've code it:
> 
> warning ("off","found by searching load path");
> 
> but it's not correct…I see these messages the same
> --
> Sent from:
> http://octave.1599824.n4.nabble.com/Octave-General-f1599825.html

"lastwarn" is what you need. Look at the documentation for "warning",
specifically the third example 

------------------------------------------------------------------
## Disable the previous warning and save its original state
[~, id] = lastwarn ();
warnstate = warning ("off", id);
loglog (-1:10);
## Restore its original state
warning (warnstate);  
------------------------------------------------------------------

Pantxo
 



--
Sent from: http://octave.1599824.n4.nabble.com/Octave-General-f1599825.html



reply via email to

[Prev in Thread] Current Thread [Next in Thread]