help-octave
[Top][All Lists]
Advanced

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

XLSReadWrite and Octave for Windows


From: Ian Journeaux
Subject: XLSReadWrite and Octave for Windows
Date: Tue, 12 Oct 2010 12:10:17 -0500

I was wondering if the XLSReadWrite package was available for Octave under
windows (32.bit)?

When I try to use XLSWrite I get the following error message 

octave-3.2.4.exe:2> xlswrite('c:\testt.xls',a);
ncols =  256
Creating file c:\testt.xls
Supported interfaces:
warning: No support for Excel .xls I/O
error: oct2xls: unknown Excel .xls interface - NONE.
error: called from:
error:   C:\Octave\3.2.4_gcc-4.4.0\share\octave\packages\io-1.0.11\oct2xls.m
at line 100, column 3
error:
C:\Octave\3.2.4_gcc-4.4.0\share\octave\packages\io-1.0.11\xlswrite.m at line
160, column 6

That seems to indicate that Octave knows something about XLS but not enough
to do anything.

-----Original Message-----
From: address@hidden [mailto:address@hidden

Sent: Tuesday, October 12, 2010 8:33 AM
To: address@hidden
Subject: Help-octave Digest, Vol 55, Issue 23

Send Help-octave mailing list submissions to
        address@hidden

To subscribe or unsubscribe via the World Wide Web, visit
        https://www-old.cae.wisc.edu/mailman/listinfo/help-octave
or, via email, send a message with subject or body 'help' to
        address@hidden

You can reach the person managing the list at
        address@hidden

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Help-octave digest..."


Today's Topics:

   1. audio bit depth  (dynamic range of signal)
      (Gatt Joseph at MRRA (CAMD))
   2. Fwd: nobody bothered by the slowness of contours in
      gnuplot/fltk?? (Ben Abbott)
   3. Re: audio bit depth  (dynamic range of signal) (gastonjulia)
   4. can't seem to install misc package (Vincent Dirks)
   5. Re: Octave for Windows page is down (John W. Eaton)
   6. Re: can't seem to install misc package (Jordi Guti?rrez Hermoso)


----------------------------------------------------------------------

Message: 1
Date: Mon, 11 Oct 2010 17:22:59 +0200
From: "Gatt Joseph at MRRA (CAMD)" <address@hidden>
Subject: audio bit depth  (dynamic range of signal)
To: <address@hidden>
Cc: Jonathan Barbara <address@hidden>
Message-ID: <address@hidden>
Content-Type: text/plain; charset="us-ascii"

  

 Hi,

May I please ask how one could find out the audio bit depth that's being
employed whilst Octave is running on one's PC?

Thanks in advance for your kind attention.

Regards,

          Joseph Gatt

-------------- next part --------------
An HTML attachment was scrubbed...
URL:
https://www-old.cae.wisc.edu/pipermail/help-octave/attachments/20101011/91c5
a2da/attachment-0001.html 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/jpeg
Size: 5675 bytes
Desc: image001.jpg
Url :
https://www-old.cae.wisc.edu/pipermail/help-octave/attachments/20101011/91c5
a2da/attachment-0001.jpe 

------------------------------

Message: 2
Date: Mon, 11 Oct 2010 10:42:07 -0700
From: Ben Abbott <address@hidden>
Subject: Fwd: nobody bothered by the slowness of contours in
        gnuplot/fltk??
To: kloof <address@hidden>
Cc: address@hidden
Message-ID: <address@hidden>
Content-Type: text/plain; charset=us-ascii

Begin forwarded message:

> From: kloof <address@hidden>
> Date: October 11, 2010 8:56:49 AM PDT
> To: address@hidden
> Subject: Re: nobody bothered by the slowness of contours in gnuplot/fltk??
> 
> 
> Dear Martin,
> 
> I've put the z(x,y) data (here x=280 y=1024) and the 'script' on the
> following page.
> This example takes about 1.5 minutes, before the plot appears.
> 
> http://homepage.tudelft.nl/8t03d/
> 
> 
> Thanks for the reply and your efforts!
> 
> kloof
> 
> ps. using plplot a contour plot of this data pops up in 1 second.

I'm also running MacOS X

        octave:1> backend fltk
        octave:2> load octave_binary_data.txt
        octave:3> tic (); contour (tof, hoek, I); toc ()
        Elapsed time is 114.879 seconds.
        octave:4> whos tof hoek I

        Variables in the current scope:

          Attr Name        Size                     Bytes  Class
          ==== ====        ====                     =====  ===== 
               tof         1x1024                    8192  double
               hoek        1x280                     2240  double
               I         280x1024                 2293760  double

However, with a simple example ...

        octave:5> x = linspace (-3, 3, 1024);
        octave:6> y = linspace (-3, 3, 280);
        octave:7> z = peaks (x, y);
        octave:8> tic (); contour (x, y, z); toc ()
        Elapsed time is 0.329376 seconds.

        octave:9> whos x y z
        Variables in the current scope:

          Attr Name        Size                     Bytes  Class
          ==== ====        ====                     =====  ===== 
               x           1x1024                    8192  double
               y           1x280                     2240  double
               z         280x1024                 2293760  double


The slow-down is proportional to the number of patches (3297 vs 16 for the
above) created in by the subfunction add_patch_children() which is in
__contour__.m.

If the creation of the patches (lines 336:366) could be vectorized the slow
down would be substantially reduced.

I'll file a bug report.

Ben


------------------------------

Message: 3
Date: Mon, 11 Oct 2010 11:28:59 -0700 (PDT)
From: gastonjulia <address@hidden>
Subject: Re: audio bit depth  (dynamic range of signal)
To: address@hidden
Message-ID: <address@hidden>
Content-Type: text/plain; charset=us-ascii


Hi Joseph,

``octave:3> record(5);
Please hit ENTER and speak afterwards!

5+0 records in
5+0 records out
40000 bytes (40 kB) copied, 5.12878 s, 7.8 kB/s
cmd = dd if=/dev/dsp of="/tmp/oct-4MT1kT" bs=8000 count=5''

It appears that there were 5 seconds recorded, with 8 kHz sampling. Assuming
that 7.8 kB/s is 7.8 kByte per second, it seems to be 8 Bit depth per
sample. There is a setaudio() function, but I am not quite aware what it
takes.

Best,
Gaston 
-- 
View this message in context:
http://octave.1599824.n4.nabble.com/audio-bit-depth-dynamic-range-of-signal-
tp2990211p2990328.html
Sent from the Octave - General mailing list archive at Nabble.com.


------------------------------

Message: 4
Date: Tue, 12 Oct 2010 14:54:46 +1300
From: Vincent Dirks <address@hidden>
Subject: can't seem to install misc package
To: address@hidden
Message-ID: <address@hidden>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

  Hi Help

I do the following command with unexpected results... any ideas what i 
need to do to make it work?

I'm rather new to mac's and programming but had a look for the 
config.log but it didn't show anything I could understand.

Any help would be much appreciated

Vincent

octave-3.2.3:12> pkg install miscellaneous-1.0.9.tar.gz
configure: error: in 
`/var/folders/Yw/YwAbBzhZFJihlIWSLj+uGE+++TQ/-Tmp-/oct-5Aenq9/miscellaneous-
1.0.9/src':
configure: error: C compiler cannot create executables
See `config.log' for more details.
the configure script returned the following error: checking for gcc... gcc
checking for C compiler default output file name...
error: called from `pkg>configure_make' in file 
/Applications/Octave.app/Contents/Resources/share/octave/3.2.3/m/pkg/pkg.m 
near line 1240, column 2
error: called from:
error:   
/Applications/Octave.app/Contents/Resources/share/octave/3.2.3/m/pkg/pkg.m 
at line 714, column 5
error:   
/Applications/Octave.app/Contents/Resources/share/octave/3.2.3/m/pkg/pkg.m 
at line 287, column 7

-- 
                                           +   +
                                           |\_/|
                                           |0 0|
=======================================oo0=(_)=0oo===========
Vincent, Kim, Christopher&  Katie Dirks (at home)
  address@hidden   |   Home:    +64-9-524-5540
  address@hidden    |   Kim : mb +64-21-0269-6214
  44B Kelvin Rd             |       : wk +64-9-3737-599 x89755
  Remuera 1050              |Vincent: mb +64-21-0269-6216
  New Zealand               |
=============================================================
Our Email Client filters and automatically deletes any messages identified
as SPAM.



------------------------------

Message: 5
Date: Tue, 12 Oct 2010 09:18:55 -0400
From: "John W. Eaton" <address@hidden>
Subject: Re: Octave for Windows page is down
To: address@hidden
Message-ID: <address@hidden>
Content-Type: text/plain; charset=us-ascii

On  9-Oct-2010, Doug Stewart wrote:

| On Sat, Oct 9, 2010 at 5:20 PM, Dave Barnes <address@hidden> wrote:
| > 20102009 14:14 pacific
| >
| > www.octave.org down for me as well
| >
| > dave
| >
| >
| > _______________________________________________
| > Help-octave mailing list
| > address@hidden
| > https://www-old.cae.wisc.edu/mailman/listinfo/help-octave
| >
| 
| 
| www.octave.org   is down for me too in ontario canada

OK, I see now that there is a problem with the octave.org DNS
records.  I think I've fixed it but it may take a while for my change
to propagate through the intertubes.

jwe


------------------------------

Message: 6
Date: Tue, 12 Oct 2010 08:33:17 -0500
From: Jordi Guti?rrez Hermoso <address@hidden>
Subject: Re: can't seem to install misc package
To: Vincent Dirks <address@hidden>
Cc: address@hidden
Message-ID:
        <address@hidden>
Content-Type: text/plain; charset=UTF-8

On 11 October 2010 20:54, Vincent Dirks <address@hidden> wrote:
> I do the following command with unexpected results... any ideas what i
> need to do to make it work?
[snip]
> octave-3.2.3:12> pkg install miscellaneous-1.0.9.tar.gz
> configure: error: in
>
`/var/folders/Yw/YwAbBzhZFJihlIWSLj+uGE+++TQ/-Tmp-/oct-5Aenq9/miscellaneous-
1.0.9/src':
> configure: error: C compiler cannot create executables

You probably need to install a compiler on your system. For Apple
products, I understand it's available in some installation media that
came with your hardware.

I believe it's also possible to get precompiled binaries, but an Apple
user would know better than I do.

- Jordi G. H.


------------------------------

_______________________________________________
Help-octave mailing list
address@hidden
https://www-old.cae.wisc.edu/mailman/listinfo/help-octave


End of Help-octave Digest, Vol 55, Issue 23
*******************************************



reply via email to

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