octave-maintainers
[Top][All Lists]
Advanced

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

Re: help with audiodevinfo


From: Burgers, A.R.
Subject: Re: help with audiodevinfo
Date: Thu, 2 Jan 2020 10:22:30 +0100
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.9.1

Op 31-12-2019 om 18:24 schreef Rik:
Could someone with access to Matlab run

x = audiodevinfo

The answer will vary somewhat based on the capabilities of your machine,
but I'm interested in whether the struct arrays returned are column vectors
or row vectors.  In Octave, they are row vectors as shown by the result on
my machine.

x =

   scalar structure containing the fields:

     input =

       1x4 struct array containing the fields:

         Name
         DriverVersion
         ID

     output =

       1x15 struct array containing the fields:

         Name
         DriverVersion
         ID

Thanks,
Rik



I get this, row vectors apparently:

>> version
ans =  '9.5.0.1049112 (R2018b) Update 3'

>> x=audiodevinfo
x = struct with fields:

     input: [1×2 struct]
    output: [1×2 struct]

>> x.input
ans =  1×2 struct array with fields:

    Name
    DriverVersion
    ID

>> x.output
ans =  1×2 struct array with fields:

    Name
    DriverVersion
    ID



reply via email to

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