changeset 2563:9fbe2fdfc7cc octave-forge

remove dead files
author adb014
date Mon, 02 Oct 2006 22:06:03 +0000
parents f137fa9f34ec
children f506b0b2eb82
files doc/.cvsignore doc/README doc/compatibility.html doc/index.html doc/octave-forge-home.html
diffstat 5 files changed, 0 insertions(+), 349 deletions(-) [+]
line wrap: on
line diff
--- a/doc/.cvsignore	Mon Oct 02 22:05:52 2006 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-new_developer.html
--- a/doc/README	Mon Oct 02 22:05:52 2006 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-This directory contains documentation about octave in general.  Documentation
-for specific packages should go in the individual package directories.
-
-If you modify an existing document, do the following:
-
-	export OFHOME=[forge-ID@]octave.sf.net:/home/groups/o/oc/octave/htdocs
-	cvs commit file.html
-	scp file.html $OFHOME
-
-This copies the document to the octave-forge web server so that the changes
-will be visible there.
-
-If you are creating a new document, you will need to do the following:
-
-	cvs add file.html          # tell the CVS server about the new file
-	vi index.html		   # add your page to the octave-forge set
-	vi octave-forge-home.html  # add your page to the octave-forge homepage
-	cvs commit file.html index.html octave-forge-home.html
-				   # update the CVS server
-	scp file.html octave-forge-home.html $OFHOME
-				   # update the octave-forge web
-	ssh [forge-ID@]octave.sf.net
-	cd /home/groups/o/oc/octave/htdocs
-	chmod 664 file.html	   # set group edit permission on the file
-
-Paul Kienzle
-2001-12-21
--- a/doc/compatibility.html	Mon Oct 02 22:05:52 2006 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,199 +0,0 @@
-<html><head><title>Octave Compatibility FAQ</title>
-<body><h1>Octave Compatibility FAQ</h1>
-
-<p>This document is out of date.  Please see the 
-<a href="http://wiki.octave.org/wiki.pl?MatlabOctaveCompatibility">Compatibility page</a> on the <a href="http://wiki.octave.org">Octave wiki</a>.</p>
-
-<p>Octave is mostly compatible with Matlab.  Most matlab functions can
-be made to run with very little change.  With careful coding, you can 
-get your code to run without change in Matlab and Octave.  This document 
-outlines the things that you need to watch out for.</p>
-
-<p>You may want to start Octave with the option --traditional, which sets
-a number flags so that the interpreter handles things in a more
-compatible way.  See the "porting" section of the octave FAQ:
-	http://www.octave.org/FAQ.html#SEC24
-<p>
-Be sure you have a recent development version of octave and install
-<a href="http://octave.sf.net">octave-forge</a>.</p>
-
-<h2>Resources</h2>
-
-<dl>
-<dt>octave-forge
-<dd>http://octave.sf.net
-<dt>Joao Cardoso's summary of the octave mailing lists
-<dd>http://merlin.inescn.pt/~qual/Octave/Octave_links.html
-<dt>Octave mailing list archives
-<dd>http://www.octave.org/octave-lists/archive/index.html
-</dl>
-
-<h2>Language Elements</h2>
-<ul>
-
-<li>Q. Do load and save work for structures?
-<br>A. Versions of octave after 2.1.53 support loading and saving of
-   structures in all of its file formats.
-   
-<li>Q. Does octave support 'end' indexing?
-<br>A. Yes, for sufficiently new versions of octave.  For older versions,
-   use length(A) or size(A,1) and size(A,2) as you did before matlab
-   added the 'end' indexing syntax.
-
-<li>Q. Why do "grid on" and other commands give me a syntax error?
-<br>A. Only Octave built-ins can be ``text functions'' (and only a few
-   are defined to be).  Those which are not built-in, you can mark
-   as text functions using the following line in your ~/.octaverc:
-	mark_as_command grid axis
-   Either that or use the functional form: grid('on')
-
-<li>Q. Why isn't Octave seeing my .matlabrc file?
-<br>A. Because it is not called .octaverc.
-
-<li>Q. How do I compile my mex functions?
-<br>A. See the mex subdirectory of octave-forge/extras.   
-
-<li>Q. debugging?
-<br>A. it exists but is not well documented
-<table>
-<tr><td>  dbstop if error            <td>-> <td>debug_on_error = 1
-<tr><td>   dbstop in mfile at lineno  <td>-> <td>dbstop (func, line)
-<tr><td>   dbclear in mfile at lineno <td>-> <td>dbclear (func, line)
-<tr><td>   dbquit    <td>-> <td>quit
-<tr><td>   dbstack   <td>-> <td>dbwhere
-<tr><td>   dbcont    <td>-> <td>dbg_cont
-<tr><td>   dbstep in <td>-> <td>dbg_step
-<tr><td>   dbstep    <td>-> <td>dbg_next
-<tr><td>   dbstatus  <td>-> <td>dbstatus
-</table>
-
-<li>Q. assignin
-<br>A. Get a recent version of octave.
-
-<li>Q. [a{:}] = ...
-<br>A. Octave can not yet use this construct to define multiple output
-   arguments. Use "[a{1},a{2}] =" instead. It is expected that this will be
-   fixed in a future release.
-
-</ul>
-<h2>Types</h2>
-<ul>
-
-<li>Q. Does Octave support sparse matrices?
-<br>A. Use sparse package in octave-forge.
-
-<li>Q. Does Octave support nD arrays?
-<br>A. Yes, for sufficiently recent versions of octave
-
-<li>Q. Does octave support cell arrays?
-<br>A. Yes, in recent development versions.
-
-<li>Q. Does octave support different precisions char, short, float, etc?
-<br>A. Use 2.1.58 when it is released
-
-<li>Q. Does octave support symbolic variables?
-<br>A. Use symbolic package in octave-forge.  There is no support for symbolic
-   matrices.  Symbolic equivalents to builtin functions use uppercase first
-   letter since Octave can overload built-in functions for user-defined 
-   types (see Sparse answer above for alternative).
-
-<li>Q. Does octave support arrays of structures?
-<br>A. Yes in recent development versions.
-
-</ul>
-<h2>Toolboxes</h2>
-<ul>
-
-<li>Q. simulink
-<br>A. Doesn't exist.  Search for simulink in the 
-<a href="http://www.octave.org/octave-lists/archive/index.html">octave archives</a>
-for suggested alternatives.
-
-<li>Q. Is there an optimization tool box?
-<br>A. Use octave-forge.  This is incomplete.  If you need more see
-   Joao's summary of the octave lists.
-
-<li>Q. ODE's?
-<br>A. Octave has lsode.  octave-forge has matlab style ode23, etc.
-
-<li>Q. Integration?
-<br>A. Octave has quad. octave-forge has matlab V5 style quadrature functions.
-   quadl was recently added to octave-forge.
-
-<li>Q. Are there matlab style UI functions?
-<br>A. No. some work on Tcl/Tk links to Octave, but it is incomplete.  There
-   are two separate branches.  See octave archives and octave-forge. 
-
-<li>Q. Signal processing package?
-<br>A. octave-forge has many functions.  Others are available:
-
-<dl>
-<dt>	vco, modulate, demod
-<dd>	Time Frequency Toolbox
-<br>	http://www-isis.enst.fr/Applications/tftb/iutsn.univ-nantes.fr/auger/tftb.html
-
-<dt>	arcov, armcov, prony, pmusic
-<dd>	SPC Tools spline directory
-<br>	ftp://svr-ftp.eng.cam.ac.uk/pub/comp.speech/tools/spctools/
-
-</dl>
-
-<li>Q. Statistics toolbox
-<br>A. many of the functions exist but often under different names in base octave
-
-<li>Q. Control systems toolbox
-<br>A. many of the functions exist but often under different names in base octave
-
-</ul>
-<h2>Individual functions</h2>
-<ul>
-
-<li>Q. Where do I find the matlab function XXX?
-<br>A. Many XXX are in the octave-forge package at http://octave.sf.net.  This
-   is a collection of Octave functions contributed by the user community
-   but not (yet) included in Octave.  If it is not there, then you can
-   try Joao Cardoso's summary of the octave mailing lists at
-	http://merlin.inescn.pt/~qual/Octave/Octave_links.html
-   or search the Octave mailing list archives directly at
-	http://www.octave.org/octave-lists/archive/index.html
-   You can also search the matlab contributions site and the wider net for 
-   alternatives to existing matlab functions.
-
-<li>Q. Why is the title of my graph not showing up on my graph.
-<br>A. Octave wants the title before the plot command, matlab
-   wants it after.  Try setting automatic_replot = 1
-
-<li>Q. logm doesn't work well for ill-conditioned matrices.
-<br>A. logm is a stalled work in progress.  Ask pkienzle@users.sf.net 
-   to post the work he and Ross Lippert did on this.
-
-<li>Q. eig(A,B)
-<br>A. qz(A,B)
-
-<li>Q. Can parameters be passed through the call to fsolve() to the
-    user-supplied function?
-<br>A. use FIXES/fsolve.cc on octave-forge.
-
-<li>Q. inmem
-<br>A. who -functions
-
-<li>Q. computer
-<br>A. exists in octave, but probably returns different output
-
-<li>Q. ! shell command
-<br>A. system("shell command")
-
-<li>Q. gallery, compan, hadamard
-<br>A. http://www.ma.man.ac.uk/~higham/testmat.html
-
-<li>Q. subspace
-<br>A. http://www.mathworks.com/support/ftp/linalgv5.shtml
-
-<li>Q. audio functions
-<br>A. octave-forge/main/audio
-
-<li>Q. datetick
-<br>A. gset xdata time; gset timefmt "%d/%m"; gset format x "%b %d"
-
-</ul>
-</body></html>
--- a/doc/index.html	Mon Oct 02 22:05:52 2006 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,11 +0,0 @@
-<html><head><title>octave-forge collected documents</title></head>
-<body>
-<h2>octave-forge collected documents</h2>
-<ul>
-<li><a href="Octave_Windows.htm">Octave for Windows FAQ</a>
-<li><a href="compatibility.html">Octave compatibility FAQ</a>
-<li><a href="../admin/new_developer.html">Octave-forge Developer's Guide</a>
-<li><a href="octave-forge-home.html">Octave-forge Home Page</a>
-</ul>
-</body>
-</html>
--- a/doc/octave-forge-home.html	Mon Oct 02 22:05:52 2006 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,111 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html>
-<head>
-	 <title>GNU Octave Repository</title>
-   <meta name="keywords" content="Octave, Matlab, math, numeric computation, numeric analysis">
-</head>
-<body bgcolor="#FFFFFF">
-
-<!-- begin top table -->
-<table align="center" BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="95%" BGCOLOR="#444444" >
-<tr>
-<td>
-<table BORDER=0 cellspacing=1 CELLPADDING=3 WIDTH="100%" >
-<tr>
-<td ALIGN=CENTER VALIGN=CENTER BGCOLOR="#FFFFFF">
-	<font face="Arial, Helvetica, Sans Serif" size=+2 color="#0000CC">
-		GNU Octave Repository	
-	</font>
-</td>
-</tr>
-</table>
-</td>
-</tr>
-</table>
-<p align="center">
-<font size="-1">
-<A href="http://octave.sourceforge.net">Home</A>&nbsp;|&nbsp;
-<A href="http://sourceforge.net/projects/octave/">Summary</A>&nbsp;|&nbsp;
-<A href="http://sourceforge.net/forum/?group_id=2888">Forums</A>&nbsp;|&nbsp;
-<A href="http://sourceforge.net/bugs/?group_id=2888">Bugs</A>&nbsp;|&nbsp;
-<A href="http://sourceforge.net/support/?group_id=2888">Support</A>&nbsp;|&nbsp;
-<A href="http://sourceforge.net/patch/?group_id=2888">Patches</A>&nbsp;|&nbsp;
-<A href="http://sourceforge.net/mail/?group_id=2888">Lists</A>&nbsp;|&nbsp;
-<A href="http://sourceforge.net/pm/?group_id=2888">Tasks</A>&nbsp;|&nbsp;
-<A href="http://sourceforge.net/docman/?group_id=2888">Docs</A>&nbsp;|&nbsp;
-<A href="http://sourceforge.net/survey/?group_id=2888">Surveys</A>&nbsp;|&nbsp;
-<A href="http://sourceforge.net/news/?group_id=2888">News</A>&nbsp;|&nbsp;
-<A href="http://sourceforge.net/cvs/?group_id=2888">CVS</A>&nbsp;|&nbsp;
-<A href="http://sourceforge.net/project/showfiles.php?group_id=2888">Files</A>
-</font>
-</p>
-
-
-<!-- end top table -->
-
-<blockquote>
-
-<p>The GNU Octave Repository 
-is a central location for the collaborative development
-of packages for <a href="http://www.octave.org/">GNU Octave</a>.</p>
-
-<p>The 
-<A href="http://sourceforge.net/project/showfiles.php?group_id=2888">octave-forge</A>
-package contains the source for all the functions plus build and install
-scripts.  These are designed to work with the latest development version of
-Octave (available from 
-<a href="http://www.octave.org/download.html">http://www.octave.org/download.html</a>), 
-but most functions will work on earlier versions of Octave including
-2.0.x versions.</p>
-
-<p>For a list of octave and octave-forge functions see the 
-<a href="index/index.html">categorical index</a>.  
-(For a local copy, download and expand
-<a href="index.tar.gz">http://octave.sf.net/index.tar.gz</a>).</p>
-
-<p>If you have code to contribute, send a message to the 
-<a href="http://lists.sourceforge.net/mailman/listinfo/octave-dev">repository mailing list</a>
-or <a href="new_developer.html">join the development team</a>.</p>
-
-<hr noshade size=1>
-
-<h3>Links</h3>
-The best source for links is the Octave Wiki at 
-<a href="http://wiki.octave.org/">http://wiki.octave.org/</a>.
-Please add your own favorites.
-<p>
-Some are worth repeating here:
-<ul>
-<li><a href="http://www.octave.org">Octave home page</a></li>
-<li><a href="http://www.fe.up.pt/~jcard/Octave_links.html">Joao Cardoso's Octave Links</a> - Octave (and Matlab) links and highlights from the <a href="http://www.che.wisc.edu/octave/help.html">mailing list</a>.
-</li>
-<li><a href="http://wiki.octave.org/wiki.pl?MatlabOctaveCompatibility">Octave compatibility FAQ</a>
-</li>
-</ul>
-<p>
-and we do have local content:
-<ul>
-<li>
-<a href="coda/index.html">Da Coda Al Fine: Pushing Octave's Limits</a> 
-[<a href="coda/coda.pdf">pdf</a>, <a href="coda/coda-sgml.tar.gz">source</a>, <a href="coda-www.tar.gz">all</a>] (using C++ with Octave).
-</li>
-<li><a href="new_developer.html">Octave-forge developer's guide</a></li>
-<li><a href="translation.html">Octave translator guide</a></li>
-<li>
-<a href="texmacs.pdf">TeXmacs Interface</a> - Information on using <a href="http://www.texmacs.org/">TeXmaxs</a> with octave.
-</li>
-<li><a href="octave_embed.tar.gz">Sample code for embedding octave</a></li>
-<li><a href="MIP73-isoheaders.tar.gz">Headers for compiling octave with SGI MIPSpro 7.3 compiler</a></li>
-<li><a href="soctcl0.1.zip">Tcl package for octcl (requires octave-forge)</a></li>
-<li><a href="http://cvs.sourceforge.net/cvstarballs/octave-cvsroot.tar.bz2">Nightly CVS tarball</a></li>
-<li>Primitive <a href="oct2mat.tar.gz">oct2mat</a> converter.
-</ul>
-
-<center>
-<p>
-<small>Hosted by</small>
-<br>
-<a  href="http://sourceforge.net"><img  src="http://sourceforge.net/sflogo.php?group_id=2888&amp;type=4"  width="125" height="37" border="0" alt="SourceForge.net Logo"  /></a>
-
-</body>
-</html>