From: Carnë D. <car...@gm...> - 2012-10-09 16:01:21
|
Always make reply all and include the mailing list. Also, avoid top posting, we use bottom posting on the mailing list. See http://www.catb.org/jargon/html/B/bottom-post.html http://www.idallen.com/topposting.html On 9 October 2012 17:49, LEo <le...@gm...> wrote: > On Fri, Oct 5, 2012 at 7:40 PM, Carnë Draug <car...@gm...> wrote: >> On 5 October 2012 20:03, LEo <le...@gm...> wrote: >>> Hello Carnë, >>> >>> A friend sugested me to add some checking for for input variables to >>> give an appropriate error message when some crazy dude try to stick a >>> string when it was expected a vector, and things like that. >>> What do you think? Is it necessary? If so, let me know and I will do it. >>> Another suggestion was to add References. Should I? How? >>> >>> Was the example/demo okay? >>> >>> Regards, >>> LEo >> >> Hi Leonardo >> >> could you please upload them to >> https://sourceforge.net/p/octave/feature-requests/40/ and follow this >> there? This things get lost very easily on mailing lists. >> >> But one problem is that demos should be made into demo blocks, not a >> separate demo script. Are you familiar with them? >> >> Carnë > > Unfortunately I am not familiar with demo blocks. > Could you point me where can I find further information? The best should be the manul though I think it could be improved http://www.gnu.org/software/octave/doc/interpreter/Demonstration-Functions.html#Demonstration-Functions See other code for examples (by convention, demos are placed at the end of the function file): http://hg.savannah.gnu.org/hgweb/octave/file/default/scripts/plot/plot.m http://hg.savannah.gnu.org/hgweb/octave/file/default/scripts/general/interp2.m http://hg.savannah.gnu.org/hgweb/octave/file/default/scripts/strings/strtok.m This functins will have a micture of both demo and test blocks. Test blocks are also very important as it allows you to find problems during development much faster. Carnë |