From help-request at octave dot org Thu Jan 20 11:41:17 2005 Subject: Re: convhull output From: Rafael Laboissiere To: Kalle Raiskila Cc: help at octave dot org Date: Thu, 20 Jan 2005 18:42:18 +0100 * Kalle Raiskila [2005-01-20 06:14]: > How do I suppress output from qhull, when I use > convhull from octave-forge? I can pass an option to > qhull, but what is the correct option to suppress the > "Operation completed. Checking precision..." -message? > It kindof clutters up the prompt when it is printed > several million times :( > > I removed it from qhull itself, but is there a proper way? > Looking at qhull's documentation, I didn't see such an option. > Is there one? Try this: X = randn (10, 1); Y = randn (10, 1); H = convhull (X, Y, "Pp"); It is well documented in http://www.qhull.org/html/qh-optp.htm -- Rafael ------------------------------------------------------------- Octave is freely available under the terms of the GNU GPL. Octave's home on the web: http://www.octave.org How to fund new projects: http://www.octave.org/funding.html Subscription information: http://www.octave.org/archive.html -------------------------------------------------------------