get the highest peak

Hello world!

I would like to know how to choose the highest peak on the chart. Can someone show me how is this possible?

Thank you!

As Altenbach said: Max & Min table.

For 2d tables, it returns the rows and columns. Use the line:

Tags: NI Software

Similar Questions

  • Get the highest value of acquired data

    Hi, how can I get the highest value of data according to data acquired using the accelerometer ADXL345 and LINX in LabVIEW?

    I want the highest data to be shown with a flag. However, the data being shown are always the last acquired data. My problem would be what happens if the highest data somewhere at the beginning or in the middle of all the acquired data? How to display the highest data using an indicator?

    Here's a look at my front, block diagram, and sample of the acquired data.

    From the front panel, the basic indicator of detected last poster 0.1929 (amplitude), which is the last value. But looking at the Excel file, the highest data are data which is 0.2013. The highest, I want to be displayed on the indicator not the last value. How do I do that?

    Thank you!

    I gave you an example of what you need to do - it is not okay if wire you the new value and the old value for the X or Y - it will always return the maximum of the two values so the order doesn't matter. It would have been more useful if you had posted what you tried the max & min. You need a registry to offset inside the loop (like I did with my while loop). If you only want to display the maximum value for each iteration of the loop for external, you must initialize the shift register by plugging a 0 to its terminal on the left. A shift register her pinned the value of the last run - probably not what you want here.

  • With the help of time interleaved sampling (TIS) to get the highest sampling rate of data acquisition card

    I tried enabling to TIS using nodes of property for the appropriate channel and by disabling the TIS for strings, I don't want to use. When I do that, I get the following error:

    niScope read Cluster.vi:1internal software error has occurred in the extended software. Please contact the support of National Instruments.

    Name of the component: nihsdru
    File name: p:\Measurements\highSpeedDigitizers\hsd\driver\trunk\1.10\source\redirection\tHardware.cpp
    Line number: 1038

    State code:-223425

    Any ideas what to do?

    Thank you, but I managed to fix it with the help of a few colleagues.

  • Changed priority wireless, but Wired Gets the highest priority

    Wireless and wired connections connection priorities messed up?

    So, to connect to the wired network of my college, you must register this computer with the ethernet cable is plugged in, more wireless. My computer can connect to the radio, but as soon as I connect the ethernet cable, the priority goes to the ethernet cord, and it has no network connection. So I tried to redefine the priorities of the networks, put my wireless at the top (in the Advanced tab of the network connections) and when I connect the power cord, always it automatically takes priority, and I have no internet connection, making it impossible to save my wired Internet connection, because I can not connect to the wireless , because the cable network is a priority! Thanks if you can help, because the wireless is here, well, not so hot. Thanks again. My computer is a brand new sony vaio 64 bit incidentally.

    Hi nergalman,

    ICS (Internet Connection Sharing) is activated?
     
     
    If so disable it. See ICS to from the link instead of him to turn it off.
     
    If you need an internet connection to your wired network, you might have to change the settings of the router for him to be on the same subnet (e.g. 192.168.1.x) according to your abilities of routers.
     
    1. open network connections by clicking the Start button, and then click Panel. In the search box, type adapterand then, under network and sharing Center click view network connections.
     
    2. right click on the connection that you want to modify and then click Properties. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.
     
    3. click the Networking tab. Under this connection uses the following items, click Internet Protocol Version 4 (TCP/IPv4) or Internet Protocol Version 6 (TCP/IPv6) and then click Properties.
     
    4. to specify IPv4 IP address settings, do one of the following:
    To obtain IP settings automatically using DHCP, click on obtain an IP address automatically and then click OK.

    To specify an IP address, click on use the following IP address, and then enter the settings of IP address in the IP address, subnet mask, and default gateway boxes,.
    Change TCP/IP settings
     
    Hope this information helps.
  • How to get the peak value

    Can I know how to get the 2 peak values v1 and v2 and 2 duration times t1 t2.

    Since there is a small amplitude noise, difficult to use the Max simplely.

    May need to use a filter such as wavelets or TREE to Denoise it first. Can I know how to use, any Toolbox in labview. How do the curve smooth first.

    Thank you.

    I can't watch your vi now (I'm at work), but if your signals are long enough, you might consider a median filter.  You can set the number of points before and after use.  I found that it is useful for some smoothing problems (not all).

  • Getting the values MIN and MAX of the table data

    I have the table and the following records.
    create table test_bank ( trans_id  number ,   trans_date   date ,    trans_amt    number ,      debit_credit_indicator varchar2(3) )
    
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (1, TO_DATE('01/17/2013 08:02:44', 'MM/DD/YYYY HH24:MI:SS'), 1099, 'cr');
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (1, TO_DATE('01/18/2013 08:03:02', 'MM/DD/YYYY HH24:MI:SS'), 800, 'cr');
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (1, TO_DATE('01/19/2013 08:03:18', 'MM/DD/YYYY HH24:MI:SS'), 500, 'db');
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (1, TO_DATE('01/20/2013 08:03:36', 'MM/DD/YYYY HH24:MI:SS'), 200, 'cr');
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (2, TO_DATE('01/22/2013 08:04:01', 'MM/DD/YYYY HH24:MI:SS'), 400, 'db');
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (2, TO_DATE('01/23/2013 08:04:16', 'MM/DD/YYYY HH24:MI:SS'), 345, 'cr');
    Insert into TEST_BANK
       (TRANS_ID, TRANS_DATE, TRANS_AMT, DEBIT_CREDIT_INDICATOR)
     Values
       (2, TO_DATE('01/24/2013 08:04:33', 'MM/DD/YYYY HH24:MI:SS'), 600, 'db');
    COMMIT;
    I need to get the highest and lowest credit / debit amount for each trans_id.
    I tried the SQL query below. Could you please let me know if a better solution.
    select distinct * from (
    select trans_id , case when debit_credit_indicator ='db' then  max(trans_amt) over (partition by trans_id,debit_credit_indicator )
                                 when  debit_credit_indicator ='cr' then  max(trans_amt) over (partition by trans_id,debit_credit_indicator )
                                 else null end trans_amt , debit_credit_indicator 
     from test_bank  
     union
     select trans_id , case when debit_credit_indicator ='db' then  min(trans_amt) over (partition by trans_id,debit_credit_indicator )
                                 when  debit_credit_indicator ='cr' then  min(trans_amt) over (partition by trans_id,debit_credit_indicator )
                                 else null end trans_amt , debit_credit_indicator 
     from test_bank   )
     order by trans_id
    Thank you

    Hello

    to get the answer, we need to know what is your expected results (showing an example).

    I don't know if this is appropriate for your needs:

      SELECT trans_id, debit_credit_indicator, MAX (trans_amt) trans_amt, 'MAX' min_max
        FROM test_bank
    GROUP BY trans_id, debit_credit_indicator
    UNION ALL
      SELECT trans_id, debit_credit_indicator, MIN (trans_amt)trans_amt, 'MIN' min_max
        FROM test_bank
    GROUP BY trans_id, debit_credit_indicator
    ORDER BY trans_id, debit_credit_indicator, min_max DESC;
    
      TRANS_ID DEBIT_CREDIT_INDICATOR  TRANS_AMT MIN_MAX
    ---------- ---------------------- ---------- -------
             1 cr                            200 MIN
             1 cr                           1099 MAX
             1 db                            500 MIN
             1 db                            500 MAX
             2 cr                            345 MIN
             2 cr                            345 MAX
             2 db                            400 MIN
             2 db                            600 MAX    
    

    Kind regards.
    Al

  • applied range__i resolution the resolution of my screen to the highest frequency and my screen is black screen and out of reach, I restarted my pc, but when it came to the login page my affixed screen again the same how can I get it back

    I chose my resolution of windows xp to the highest frequency screen and my screen become black and displayed out of reach, I restarted my pc, but when it came to the login page my screen shows again her even, how can I get it back?

    Hi hcosdihv,

    Start the PC in safe mode then go back to the display settings and set the resolution to a lower level.

    You start in Mode safe by constantly pressing the F8 key as your PC starts. A menu will appear and you must select the Safe Mode option.

    Once you have changed the screen resolution, you can restart your PC normally.

    Make sure that you "only" to select an output of the range option.

    This forum post is my own opinion and does not necessarily reflect the opinion or the opinion of Microsoft, its employees or other MVPS.

    John Barnett MVP: Windows XP Expert associated with: Windows Desktop Experience: Web:http://www.winuser.co.uk;  Web: http://xphelpandsupport.mvps.org;  Web: http://vistasupport.mvps.org;  Web: http://www.silversurfer-guide.com

  • How can I get the second and third highest salary from the emp table

    How can I get the second and third highest salary from the emp table in the ecah Department
    SQL> ed
    Wrote file afiedt.buf
    
      1  select empno, ename, sal, deptno
      2  from (
      3    select empno, ename, sal, deptno, dense_rank() over (partition by deptno order by sal desc) as rn
      4    from emp
      5    )
      6* where rn in (2,3)
    SQL> /
    
         EMPNO ENAME             SAL     DEPTNO
    ---------- ---------- ---------- ----------
          7782 CLARK            2450         10
          7934 MILLER           1300         10
          7566 JONES            2975         20
          7876 ADAMS            1100         20
          7499 ALLEN            1600         30
          7844 TURNER           1500         30
    
    6 rows selected.
    
    SQL>
    
  • What is the title of the highest element side of 2016?

    I have securities (table 1::B), which are labeled by year (table 1::A) and have a value in percentage (table 1::E) assigned to them.

    In table 2, I used an AVERAGEIF formula to determine the average percentage of anything with the label of 2016. I would also like to column B of table 2 to find the name of the actual title (table 1::B) whose value in higher percentage (table 1::E) for the corresponding year (table 2::A) and (table 1::A). Essentially, the question being answered is "what is the title of the highest rated power (as a percentage) issue of 2016?

    Moreover, I can then apply this same concept to get the average value of what that is a decade in particular and also list the title albums for each decade? The tricky part here is that I can simply use a direct statement because the decades are listed as 'the years 2010', "2000 years", etc. which do not appear in the table 1 original. Any ideas?

    Thanks for all the help. It's just a fun side project that I sometimes like to do and then I often learn new concepts that I can use to assess the data in my job as a teacher.

    Hi Minrali,

    Here is one approach. I started with 2 additional columns in the source table.

    F2 = MAX (OFFSET ($A$ 1, MATCH(A2,A,0) −1, 4, COUNTIF(A,A2), columns))

    If your column % is not the 4th column a you need ot change the '4' in this formula.

    It is filled to the bottom

    G2 = INDEX (B, MATCH(F2,E,0), column-index, area-index)

    Filled down.

    If you want to eliminate the F column that the formula would be

    INDEX (B, match (Max (offset ($A$ 1, match(a2,A,0) −1, 4, COUNTIF(A,a2), Columns)), E, 0), umn-index, the index of surface)

    He combines the two.

    And in fact. I would filter the table so that the years without values are hidden. Or you could wrap it in IFERROR() If you do not want to see the flags of the error.

    Quinn

  • Qosmio G20: How to get the higher screen resolution on monitor external 22 "

    I have a Qosmio G20 and today I bought a Samsung 226BW the external display. The Samsung has a max resolution / optimal 1680x1050px. The manual SAIS the laptop Toshiba supports a resolution of the external display up to 2048 x 1536...

    I tried now all sorts of settings, but the highest resolution I get on the external monitor is 1440 x 900 (-even as the laptop).
    1440 x 900 display 22 '' is not enough for serious photo editing;. It seems simply blur.

    What I am doing wrong? I deeply appreciate answers/comments; because if 1440 x 900 is all I can get, I have to return to the external monitor to the store...

    If someone is so good!
    Espen.

    Hello

    The available screen resolution depends on the graphics driver. You cannot choose the favorite one from the 1680 x 1050 resolution because it doesn t graphics card driver supports.

    Perhaps an update of the graphics driver could help.

    By the way; an inf file must be provided by the manufacturer of the monitor. You can install this file right-click and choosing install.

    Check also these forum discussions:
    http://forums.computers.Toshiba-Europe.com/forums/thread.jspa?threadID=19677

    http://forums.computers.Toshiba-Europe.com/forums/thread.jspa?threadID=19570&MessageID=71767

  • Get the maximum index of a vector of growth

    Hello

    I'm having a very strange problem. I simulate data with an sine function in a while loop and I keep the values< 0.7="" into="" a="" vector.="" when="" the="" sinus="" values="" are="" over="" 0.7,="" i="" remove="" the="" vector.="">

    I would like to get the maximum index of the vector at each iteration of the loop. However, I get a zero index while the vector has a size > 0.

    It's really strange, because if I put the values of the iteration instead of the values of the sine, the index created is correct (the only difference is that the iteration number is an integer, while the sine is a decimal number).

    To make someone understand something?

    Thanks for your help

    Andrew

    Instead of "delete table", just leave the REAL empty case and 'use default if unwired' on the output of the table tunnel.

    Once the sinuses is once again<0.7, you="" are="" on="" the="" descending="" branch,="" so="" the="" first="" element="" is="" always="" the="" largest="" for="" a="" while.="" nothing="" wrong="" with="">

    I would also put indicators after the case structure so they update in all conditions.

    Table min & Max will give you the index of the element with the highest value. If you want to know the size of the array, use the function "size of array".

  • Get the value of crete only 1 per cycle

    Hello

    I am a student in island and my subject transit on a plate to 2.2 Hz for 30 seconds. I try produce a reaction force of ground spike for each section in a bar chart, but my short program so fast that I get multiple peaks for each section (see attached the .png file). I've added conditional instructions to try to eliminate the additional peaks, but they only seem to be getting rid of the unnecessary peaks that occur before the actual peak. I have also tried using a loop timed instead of a while loop, which sometimes eliminates the additional peaks, but not systematically. Have any other ideas to get only one pic for each segment. Thank you.

    Hi PB,.

    probably, you have tried to find impulses to the wire enter this ranking "Peak". You can not search for the impulses to a scalar value.

    When you tried on your waveform (directly after DAQmxRead): how many samples per call DAQmx you read? How many values are in your waveform?

  • How to get the values of phase of the harmonic component digitally?

    Hello

    Basically, what I'm trying to do is to analyze the quality of acquired signals. What interests me are amplitude and phase at some frequencies (for example 50 Hz, 150 Hz, 250 Hz, etc.) of a waveform. I tried to use "measurment spectral express VI' to achieve my goals. It works well, but so far, I can handle only show spectra in graphics. Then, I tried to use "harmonic distortion Vi' to obtain the amplitudes of harmonic components digitally and it's absolutely perfect. My question is that how can I get the phase of the harmonic components digitally?

    Thank you very much

    Hao

    FFT and a manipulation of the results seems to work quite well.

    I used some tones and noise Waveform.vi to generate a test signal. .Vi (Mag Phase) FFT spectrum analysis the signal. I find the amplitude peaks and extract the phases in these places. Results are quite close to the entrance of the values even when the noise is larger than some of the harmonics.

    Lynn

  • The highest element of several bays

    I have four tables 1 d (each approximately 80 long items) stored in locations slightly different in a cluster of 'Super' (the most relevant levels can be seen in the image below). I need to find the value of the highest element in these paintings. I came with two methods, but it's getting late in the day and they all seem sadly convoluted. What is the best/better way to do this? In a similar example, I also find the item lowest of four different pictures.

    Use the function Array Max & Min

    Ben64

  • I get the message: "Cannot find the texture Media/Tablewood.dds" when I started Chess Titans.

    From: Chris

     

    I've seen this posted here, but nobody has ever had a response, so I'll ask him again.  When I first installed Vista, Chess Titans worked well recently, however, I get the following message at startup: texture is not found

    (Media/TableWood.dds)

    the d3d device has a nonzero reference number, which means that some objects were not released.  failed to create objects direct3d device

    Each is repeated twice, and then click the final, the application closes.

    Does anyone have any suggestions?

    From: Brock

    Pretty easy fix;

    (1) you must enable "Show the hidden files and folders" in Folder Options View tab. (Instructions to do this are drawn from the research "Help and Support" for "hidden files")

    2) open Explorer and navigate to;

    C:\Users\%username%\AppData\Local\Microsoft Games\Chess Titans

    User %%Nom is, of course, your own windows user name

    (3) change ChessTitans.xml; (Right click on the file and select Edit)

    Change X (X is any number of other then 0) to

    0

    Save and close the titans of chess early file in program menu.  It seems that this error occurs when you set the graphics quality on the highest setting allowing the option "smooth edges".

    Another response of the community of Windows Vista discussion groups

Maybe you are looking for

  • Firefox Sync issues

    I have BIG problems with Firefox Sync. I have rearranged the books on the Firefox browser on my laptop, including other penetrating Mobile bookmarks. The changes would have disclosed on my phone. But nothing has changed. I don't know what the problem

  • Updated Saturday Pro M40 RAM

    Hi, I'm looking to improve my memory in my satellite pro M40, but I'm a bit confused as to what is compatible. He mentions SO-DIMM in the manual, but is this related to DDR or DDR2 at all? Thank you Luke

  • iCloud selective synchronization by device?

    Use iCloud photo synchronization, I would like to know how to select which album are synchronized on some devices. For example, I want all my photo library (100 GB) synchronized on my iPhone (16 GB model), but only 2 or 3 albums selected (1 GB) in or

  • Compaq Presario SR1928IL desktop PC

    I have Compaq Presario SR1928IL desktop PC

  • I have the same problem, error code 0 x 80070002

    MY question is what do I do? I don't have windows vista, I have windows Xp media center edition? What steps to follow to address this situation. My windows shows me I have updates, but it does not install updates