How to record tow channels simultaneus data

Hi!
I am a beginner in LabVIEW.
I‘d like to know how to save tow or more channels at de same time in only one matrix?
Manuel

Hi Tito-Pulo, good morning!
As you can see at the link attached, you just have to merge the signals and then change from array to matrix. I hope it could useful.
Regards,
Filipe Silva
NI Brazil
Attachments:
Two channells in Matrix.vi ‏110 KB

Similar Messages

  • How can I record several channels of data at different rates with the same card?

    I am building an application in which I need to record several channels of DC voltage data to disk at different rates, for example, Channel 1 at 40 Hz, Channels 3-5 at 10 Hz, Channels 6-8 at 1 Hz, etc.
    All these channels are time-referenced, so I need to make sure data for channels recorded at slower rates line up with their correct time stamp.
    Currently, I am building all data into a 2D array one row per loop iteration.

    Hello;
    At this time, the NI DAQ boards have only one scan clock, so, you can only define one valid scan rate for all of your channels.
    The better approach for you is to sample all channels at the highest rate you will need, and then discard the samples you don't need to save.
    Hope this helps.
    Filipe

  • How to get spot channels colors data and get spot channels length

    File is cmyk format..spot channel color is cmyk .such as an spot channel color is c100m50y20k5
    how get spot channels color data use javascript? c=? m=? y=? k=?
    howv to get spot channel length n(don't cmyk channel) use javascript?  such as file cmyk + 7 spot channel    n=7
    pls help me

    You may want to post over at:
    Photoshop Scripting
    And you may want to elaborate on what this is supposed to mean:
    File is cmyk format..spot channel color is cmyk .such as an spot channel color is c100m50y20k5
    Maybe posting screenshots with the relevant Panels visible might help illustrate the issue.

  • How to record partitioned tables in Data Modeler ?

    Hi,
    I have discovered the options for partitioned tables. Some questions remain, however.
    1) Static partitions
    For one table, a set of predefined partitions is set up in the data model. In certain situations, a new partition is added. Is it possible to generate alter table DDL from the model that will add this partition ?
    2) Dynamic partitions
    For another table, partitions are added and deleted on the fly (exhange partition). For this tabel, I would like to record just 1 partition, which is added when the tabels are created initially. It is not important to include the actual partitions when synchronizing with the database. Is it possible to skip this for a certain table (i.e. record this preference with the table, since it does not apply for all partitioned tables... ) ?
    Thanks,
    Richard.

    Hi Richard,
    For one table, a set of predefined partitions is set up in the data model. In certain situations, a new partition is added. Is it possible to generate alter table DDL from the model that will add this partition ?
    In Data Modeler version 4.1, ALTER TABLE ... ADD PARTITION statements are generated for new LIST partitions, but not for other types of partitions.
    For another table, partitions are added and deleted on the fly (exhange partition). For this tabel, I would like to record just 1 partition, which is added when the tabels are created initially. It is not important to include the actual partitions when synchronizing with the database. Is it possible to skip this for a certain table (i.e. record this preference with the table, since it does not apply for all partitioned tables... ) ?
    I've logged an enhancement request on this.
    Regards,
    David

  • How to record two channels at once with two mics

    How do you set up and record-enable two tracks with seperate microphones at once?

    Thank you Eriksimon but I'm afraid I did not correctly ask my question.  I am using two USB mics without an external interface.  They are plugged into seperate USB ports on my Imac and I can only access one or the other for recording purposes.  I wish to use them at the same time on two seperate record-enabled tracks so that I can obtain either seperate vocal tracks or a stereo image of an acoustic guitar.  One of my mics is a stereo Yeti but I am not satisfied with the results using the stereo capsule arrangement.  Thanks again!

  • How to record 48 channels

    Hello logic pros.
    We got our copy of Logic 8 and its great but there are couple of things we can't figure out.
    1. We can only record up to 23 channels. We have 48 channels in our mixing board and all of them are routed to 2 motu 24 i/o. On Logic if we arm the other channels (Clicking the R button) after 23 it won't arm or it will take out the other 8 that are armed. Is there a setting or something we need to configure? I can't find it on the manual too.
    2. The mic input levels are low vs the instrument levels. I'm not sure if this has to do something with the motu but for some reason it only happens to the microphone inputs.
    Thanks in advance.

    Hello, make sure your inputs are from 1 to 48 also make sure motu pci mix shows every chanel, you should not have problems I do 32 chanels all the time

  • How to record 2 channels

    When I record it is just one side (one speaker) how can I get it to record and play on both sides?

    You need to provide a bit more info than that :-)
    What is your setup - sound card etc?
    What are you recording with - eg microphone?
    Are you recording in mono or stereo?
    If stereo do you see a stereo wav but only hear out of one speaker (I assume both speakers work)

  • Re : How many Records that are transfer once I.P is shedule

    Hi
    Once one Info package is schedule what is the database that store how much records are transfer to data targets (Info package ,O.D.S)
    Can any one provide the information on SAP BW Database tables

    Solved

  • How can I reference records outside the two date parameters?

    Hi all,
    I have a query that fetches records based on the two date parameters defined (Startdate and Enddate).
    If the Startdate is 2014-12-01 and the Enddate is 2014-12-12, I want to pull records outside these two date parameters, that is      2014-09-01 and 2014-11-30.
    I want to add up the records from  2014-09-01 and 2014-11-30 and include them in one of the columns in my report.
    I tried using this query:
     SUM(CASE WHEN FilteredIncident.Statuscodename IN ('QUEUED', 'ASSIGNED') AND (EnteredOn >= '2014-09-01' AND EnteredOn<= @StartDate) THEN 1 ELSE 0 END) AS OpenRecords
    Please help with any ideas..thanks

    Please follow basic Netiquette and post the DDL we need to answer this. Follow industry and ANSI/ISO standards in your data. You should follow ISO-11179 rules for naming data elements. You should follow ISO-8601 rules for displaying temporal data. We need
    to know the data types, keys and constraints on the table. Avoid dialect in favor of ANSI/ISO Standard SQL. And you probably need to read and download the PDF for: 
    https://www.simple-talk.com/books/sql-books/119-sql-code-smells/
    There is no such crap as a “status_code_name” in RDBMS. It has to be a “<something in particular>_status”; think about how silly that data element name is! Want to keep going and have a “status_code_name_value_id”? LOL! 
    The name “Filtered_Incident” is also wrong. Tables are sets, so unless you have only one element in this set, the table name should be a plural or (better) collective name. But a better question is why  did you split out “Filtered_Incidents” from “Incidents”?
    Would you also split “Male_Personnel” and “Male_Personnel” from “Personnel”? 
    Get a book on data modeling and learn some basics. 
    >> I have a query that fetches records [sic: rows are nor records] based on the two date parameters defined (report_start_date and report_end_date). If the report_start_date is 2014-12-01 and the report_end_date is 2014-12-12, I want to pull records [sic]
    outside these two date parameters, that is 2014-09-01 and 2014-11-30. I want to add up the records [sic] from 2014-09-01 and 2014-11-30 and include them in one of the columns in my report. <<
    Having no DDL and no sample data makes this hard. Does your boss make you program without any documentation, DDL, etc? This spec is vague; you say to do a total, but show a count, etc. 
    One of the many nice things about DATE data types is that the BETWEEN predicate works with them, so you can quite writing 1960's BASIC predicates with primitive logic operators. 
    Here is a guess: 
    SELECT SUM(CASE WHEN incident_date BETWEEN '2014-09-01' 
               AND @report_start_date THEN 1 ELSE 0 END)
           AS open_record_cnt 
      FROM Incidents
     WHERE incident_status IN ('QUEUED', 'ASSIGNED')
        AND incident_date <= @report_end_date; 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • I have video clips with 4 channels of audio, I can only hear audio recorded on channel one, how do I hear the other channels......?

    I have video clips with 4 channels of audio, I can only hear audio recorded on channel one, how do I hear the other channels......?

    What version of Premiere Elements and on what computer operating system?     Elements 13 on Windows 7
    What is the brand/model/settings of the camera that recorded these videos?        ony  PMW 320
    When you import them into your Premiere Elements project, what does Premiere Elements Properties for that import give for
    the audio description in the way of number of channels? If you open the Audio Meter (Window Menu/Audio Meters) and you play back
    the video in the Premiere Elements Editor, how many channels does the Audio Meter display?   
      I just drag and drop video and when playing back only channel 1 will appear
    What is your intended export for this video in terms of audio as well as video compression and formats?    MP4
    I think you can only use audio if it's recorded on channel 1 or it does not recognize it.
    Thanks for the help if possible,Kevin416 873 8374

  • How to generate a set of date type records

    How to generate a set of date-type records, with a fixed interval, starting from a date like 2008-01-01.

    Some thing like this
    SQL> select to_char(to_date('2008-01-01','yyyy-mm-dd') + (level - 1),'DD-MON-YYYY') my_date
      2    from dual
      3  connect by level <= 10
      4  /
    MY_DATE
    01-JAN-2008
    02-JAN-2008
    03-JAN-2008
    04-JAN-2008
    05-JAN-2008
    06-JAN-2008
    07-JAN-2008
    08-JAN-2008
    09-JAN-2008
    10-JAN-2008
    10 rows selected.

  • How to find the last update date time and user of record field peoplecode

    how to find the last update date time record field peoplecode?
    Thank you.

    One can check the last update date time using the following query
    SELECT LASTUPDDTTM FROM PSPCMPROG WHERE OBJECTVALUE1 LIKE 'RECNAME' AND OBJECTVALUE2 LIKE 'FIELDNAME'

  • How get one channel of data from two-channel audio file?

    I need to either convert a 2-channel audio file to 1-channel or else get just one channel of data (does this lose some sound?) for a calculation. How would I do that?

    In terms of a loop over byte[] data, double[] left, double[] right...
    8-bit mono
    for (int i = 0; i < data.length; i += 1) {
         left[i] = (double)data;
    16-bit monofor (int i = 0; (i*2) < data.length; i++) {
    left[i] = ((double)data[2*i] << 8) + (double)data[(2*i)+1]);
    8-bit stereofor (int i = 0; (i*2) < data.length; i++) {
    left[i] = (double)data[2*i];
    right[i] = (double)data[(2*i)+1];
    16-bit stereofor (int i = 0; (i*4) < data.length; i++) {
    left[i] = ((double)data[2*i] << 8) + (double)data[(2*i)+1]);
    right[i] = ((double)data[(2*i)+2] << 8) + (double)data[(2*i)+3]);

  • How to display record with most recent date in sapui5?

    Hi
    I have a local json data with me, in which I have number of records.
    And in each record I have an "AENDATE" as a date property.
    Now I want to display the record with most recent date in the records.
    How I can I do it......????????
    Please help me with this.
    Thanks
    Sathish

    How about sorting your json model descending, and display only first (index:0) item?

  • How to retrieve alpha channel data in format plugin

    I want to ask how to get the alpha channel 's data that describle the document's transparent info, in a format plugin.
    for example , when open a PNG file in Photoshop, the photoshop set FormatRecord:: planes to 3 (not 4),
    in this case i can only request the RGB data.
    then how can i get if the pixel is transparent in document ?  (that is 0 - completely transparent, 255 - completely opaque)
    Thanks~

    i have resolved this problem, it's maybe i didnot set the fmtCanWriteTransparency flag in the pipl.
    thanks.

Maybe you are looking for