Determine the position of a part of the signal on a graph

Hi all

I have a problem. I determine the position of a part of the signal on a chart. So, I have to determine the maximum value of the part (this is not a problem).

Signal a lot of noise. I did some filtration but still signal have noise. Concerning this, filter change signal, two later when I take one measure, there is a possibility that this is not true.

Anyone has idea how to determine the position of a part of a signal automatically, for the various signals (similar).

There are photos attached where is what belongs to an interest in a signal. There is a VI where is an a test signal.

Thank you

Hello

From the screenshot, I understand that you only interested in the local maximum of the signal.

There is a VI that detects peaks when you specify a certaing point and this point maximum width.

Later, it's just a matter of setting the value of local maximum of you. Basically, you'll have to point once again got 1 d table than VI.

I enclose a VI that can be a good starting point for your application.

Best regards

Ion R.

Tags: NI Software

Similar Questions

  • App to determine the "Signal strength" airport

    I have 1 Airport Extreme Base Station (5th generation) in my house.

    I have a 2nd Airport Extreme Base Station (also 5th generation) in a separate building in my back yard.

    The 2nd airport is connected to the airport 1 via an Ethernet Cable that runs through an underground conduit.

    I'm sure I used to have an App on my iPhone that would check the 'intensity of the airport Signal' as opposed to the 'speed '.

    Maybe it was on my old iPhone 4S & it was never transferred to the iPhone 6 Plus?

    Whatever it is, I can't seem to find the app anywhere.

    Does anyone have an idea on what this app can have been called or who made it?

    Any help would be greatly appreciated.

    iOS does not allow access to the wifi signal measures last I checked...

    However, I can recommend the app Netspot (PC/Mac friendly) to measure the signal wireless throughout your home.

  • Merge the signals and waveform graph

    Hi all

    I ask you what follows, because I have little knowledge about labview

    I have a function of merging signals which should take 7 signal as input. but I have no idea how to do to see the 7 signal on a waveform graph outputs. I want to show the 7 signals each of them on a waveform graph. (like research in the panet before I would see an array of unique waveform showing the 7 signals).

    can you guys help me?

    Thank you.

    I'm confused for... Please find attached a really simple screw that does the job you want...

    Are you tracing the curve of a graph or a chart? My VI control is a chart.

  • How can I determine the position of the mouse in a 2D image control

    I have an app where I would like the user to be able to interact with objects in a 2D image control with the mouse.  To do this, I need to translate between the screen coordinates, which are transmitted with the events of mouse and in the control of 2D image.

    The problem that I am running is that I can't find a way to determine the screen coordinates of the top left corner of the drawing/client of the 2D image control area.  I tried to use the 'Position' of the image control property, but this results in a mismatch because of the difference between the upper-left corner of the image control (including the label, etc.) and the upper left corner of the drawing area.  See attached VI.

    Does anyone know how to get the coordinate of the screen from the corner of the drawing of the control of the photo area?

    Mark Moss

    I tend to use the mouse in the image control property to get the position.  Deals with things like the passage of origin for you.

  • FPGA acquires only the positive part of the signal

    Hi all

    I have the NI USB-7855R and using the personality of DAQ balanced example of e/s (http://www.ni.com/example/5961/en/). I plugged my generator Agilent to AI0 (in mode CSR) and I have the following problems:

    (1) waveform graph in LabVIEW is only to show the positive part of the sine wave that I am providing to the Board of Directors (clipping at 0 V). Only by compensating the signal from the signal generator, I am able to get the two cycles.

    (2) while I am out 5 Vpp on the generator of signals on the graph of a waveform in LabVIEW I see only 1.5 mVp.

    Any suggestions on what could be the problem?

    Thanks in advance or your help!

    The first graph of "analog input" in your link shows the analog inputs are converted to unsigned integers (U32) before their passage in the FPGA-> host FIFO. Negative values will obviously be lost make this conversion.

  • Run a query that will determine the number of parts to produce

    I have the task I have to determine the number of parts that need to be produced based on the number of products sold for the day (each product consists of several parts).

    I use SQL 11g Express.

    I watched this during so long and tried so many different ways. Here's some of what I tried, with the error messages. I don't know where I am going wrong get this calculation. Here, any help is greatly appreciated!

    Here's my info:
    /**PRODUCT**/
    
    CREATE table Product
    (
        SKU       VARCHAR2(10) NOT NULL,
        ProdDesc   VARCHAR2(50) NOT NULL,
        Price      NUMBER(5,2),
        PRIMARY KEY(SKU)
    );
    
    /**PART**/
    CREATE table Part
    (
        PartID     NUMBER(6) NOT NULL,
        PartDesc   VARCHAR2(50) NOT NULL,
        PRIMARY KEY(PartID)
    );
    
    /**PRODUCTPART**/
    CREATE table ProductPart
    (
        SKU        VARCHAR2(10) NOT NULL CONSTRAINT fk_ProductPart_Product REFERENCES Product (SKU),
        PartID     NUMBER(6) NOT NULL CONSTRAINT fk_ProductPart_Part REFERENCES Part (PartID),
        NumOfParts NUMBER(3),
        CONSTRAINT pk_ProductPart PRIMARY KEY (SKU, PartID)
    );
    
    CREATE table Customer
    (
        CustID     NUMBER(6) NOT NULL,
        CustFname  VARCHAR2(20) NOT NULL,
        CustLname  VARCHAR2(20) NOT NULL,
        Company    VARCHAR2(40),
        Address    VARCHAR2(40) NOT NULL,
        City       VARCHAR2(30)NOT NULL,
        State      VARCHAR2(2)NOT NULL,
        Zip        NUMBER(5)NOT NULL,
        Phone      NUMBER(10)NOT NULL,
        PRIMARY KEY (CustID)
    );
    
    CREATE table CustOrder
    (
        OrderID    NUMBER(6) NOT NULL,
        Qty        NUMBER(3) NOT NULL,
        OrderDate  Date NOT NULL,
        SKU        VARCHAR(10) NOT NULL CONSTRAINT fk_CustOrder_Product REFERENCES Product (SKU),
        CustID     Number(6) NOT NULL CONSTRAINT fk_CustOrder_Customer REFERENCES Customer (CustID),
        PRIMARY KEY (OrderID)
    );
    
    
    Here are some of the queries:
    
    SELECT ProductPart.Qty
        (
    SELECT CustOrder.SKU,
    sum(CustOrder.qty)
    FROM CustOrder
        GROUP BY CustOrder.SKU;)
    FROM ProductPart
    WHERE ProductPart.Qty * sum(CustOrder.Qty)
    
    
    ORA-00936: missing expression
    
    SELECT o.OrderDate AS "Date Ordered",
           o.OrderDate + 5 AS "Date Due",
           pp.PartID AS "Part No.",
        pp.NumOfParts * COUNT(o.SKU) AS "Qty"
    FROM CustOrder o
    JOIN ProductPart pp
      ON o.SKU = pp.SKU
        GROUP BY pp.PartID, o.OrderDate, COUNT(o.SKU)
    ORDER BY o.OrderDate
    
    
    ORA-00934: group function is not allowed here
    
    SELECT ProductPart.Qty,
           ProductPart.PartID,
           ProductPart.PartDesc
    (SELECT COUNT(CustOrder.SKU)
     FROM CustOrder
     GROUP BY CustomerOrder.SKU)TotalProducts,
    ProductPart.Qty * TotalProducts AS "Qty"
    FROM ProductParty
    WHERE CustOrder.SKU = Product.SKU
    AND Product.SKU = ProductPart.SKU
    
    
    ORA-00936: missing expression
    
    SELECT ProductPart.Qty,
           ProductPart.PartID,
           ProductPart.PartDesc
    (SELECT sum(CustOrder.qty)
    FROM CustOrder
    GROUP BY CustOrder.SKU)TotalProducts
        ProductPart.Qty * TotalProducts
        FROM ProductPart
    
    
    ORA-00936: missing expression

  • Determine the Position of a MovieClip

    Hello everyone - need a guru of ActionScript 2.0 - Please help

    I'm developing a test for Visual acuity and response time (hand/eye coordination) I have a grid of possible locations where I have a clip from the film that appear. I am able to follow the time it takes for a user to press the space bar after having seen the object appear, however I am now taking two steps more far.

    1. I want to follow the x, position y of the item the subject answered.
    2. I want to store these data with the response time in a database.

    Any help with the first would be greatly appreciated I already have plans with ASP.Net and XML to move the data, but I would like to address the first hurdle which is to determine the x, position y.


    Thank you

    set up a dynamic field or the canvas text if you do not want visible or on with the same text color as the background, or whatever you want... but it helps to get the coordinates... where my_mc is the instance name of MC and my_txt is the name of the text field instance:
    my_mc.onRelease = function() {}
    my_txt. Text = "("+ my_mc._x +"," + my_mc._y + "my_mc._y +") "; » ;
    }

  • How to determine the amount of memory was my pci-6115?

    How to determine the amount of memory was my pci-6115?

    I see two beaches of memory OR max.

    My PCI-6115 there 32 or 64 MB memory?

    Range of memory between 1: FE9F7000-FE9F7FFF

    Range of memory between 2: FE9F7800-FE9F8FFF

    It's an old part number for the Board 32 MB.

    -Christina

  • How to determine the amount of memory on the PXI-5124

    Can I determine the amount of memory on the PXI-5124 visually? I don't see a reference as 778757-02 on the map.

    Hello axiomtest,

    There are two stickers on the back of the card (including one with a barcode) and the other without.  The part number is that without the bar code and from there, you can search your memory option on our Web site.  If there is no sticker on the card, which looks like yours have been removed, then use this example of community in LabVIEW to determine the size of your card.

    Kind regards

  • Determine the DRAC of RACADM version?

    Is there a way to determine the version of DRAC General (e.g. DRAC6, DRAC7) by using the RACADM commands? I'm working on a few scripts that must run differently on DRAC6 vs DRAC7.

    I am currently shooting (from RACADM GETSYSINFO) system model and examining the 2nd digit of the numeric part. (e.g. M610 - 1 indicates DRAC6, R720 - 2 indicates DRAC 7) but I tell myself that there must be a better way to do it.

    Thanks in advance. Post

    Jim,

    Looks like there may be a way, you will need to test it in your environment.

    racadm - u Pei methods g idracinfo o idractype r
     
    Now, each of them brings a different code. That's what we've found so far:
     
    moulder-components of 11g idrac6 reported as 11
    12g monolithic reported as 16
    12g modular reported that 17
     
     

    iDRAC Type (read-only)

    Description

    Identifies the type of controller to access remotely.

    Allowed values

    Product ID

    By default

    MCC: 9

    For 10G iDRAC: 8

    For 11G iDRAC6 on Rack and servers: 10

    For 11G iDRAC6 Enterprise on blades: 11

    For 12G iDRAC7 on Rack and servers: 16

    For 12G iDRAC7 Enterprise on blades: 17

    Let us know if this solution works for you...

    Best regards and enjoy your weekend.

     
     

     

  • IPCC Express - determine the age of current contact

    I am looking for a way to determine the age of the current contact during execution of the script. Something like a stage that would match the current age of current contact in a few seconds, then that could be stored in a variable and a value of trigger in an If / then. This could be used to trigger a backup CSQ overflow (if contact is longer than 90 seconds, then route the call to the queue of backup). Normally I use a loop and simply count the number of times that I spend in the loop, but for a specific application, it would be preferable to use the age contact instead. Any suggestions greatly appreciated.

    Thank you

    Chris

    Check:

    Download Statistical Reporting (general article)

    Purpose of report: CSQ ICD

    Field: Current wait time

    Position in queue

    Expected time-out

    Connected resources

    Row identifier: should be your CSQ identifier or string variable

    Statistical variable: Variable that you want to fill in your script.

    As you will see, there are many choices. I think that the current waiting time might be what you want.

  • How to determine the server message on existing unity store

    I have an existing unit with a separate message store. The recovery of message for the voicemails stored user is about 5 to 8 seconds. This just started happening. How can I determine which server has the message store and what could cause me behind?

    Thank you

    Rcoalson

    One way to determine the partner server is with the tool to collect System Info unit. This can be performed from the filing of the tools or directly from C:\CommServer\Utilities\GatherUnitySystemInfo\GatherUnitySystemInfo.exe. Under information environment, you will see the partner server. Take a look at the following link for some tips for troubleshooting this type of problem, including how to find out the reason for the delay.,.

    http://www.Cisco.com/en/us/products/SW/voicesw/ps2237/products_tech_note09186a0080094e60.shtml

    I hope this helps. If so, please indicate the position.

    Brandon

  • 12.2.4 creating a requisition internal error (error of calculation of the tax: the system cannot determine the geographic information for this place and cannot be derived from a tax jurisdiction).

    Hi all

    I have created a new configuration of client and location. Now try to create IR and get below error.

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

    Error: The tax calculation: the system cannot determine the geographic information for this place and cannot be derived from a tax jurisdiction. Please contact your system administrator.

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

    I've made a few changes by looking at Doc-ID 1385936.1 and community discussions.

    Ran "Name geography program SEO" and the journal looks very good. No registration rejected.

    +---------------------------------------------------------------------------+

    From simultaneous program ' geo referencing worker name: 1'

    Start 08/07/15 07:44:56

    Treatment for the Table: HZ_LOCATIONS and run Type: ALL

    Parameters: Country Code: U.S.

    Use code: all THE

    Location Id: NULL: location Id: null

    Start date: NULL: End Date: NULL

    Number of workers: 1

    Total number of records of location of treaties: 7319

    Number of records managed: 7319

    Number of rejected records: 0

    Name of georeferencing process completed successfully

    +---------------------------------------------------------------------------+

    But still, I get the same error during the creation of IR

    Someone help me please by looking in the uploaded screenshots. Incase if any additional necessary information, pls let me know.

    This is related planning tests for this customer, I don't know about this part of the tax.

    Any help is really appreciated. Thanks in advance.

    Akshay

    PS: This is not the sensitive customer data.

    Hello Akshay,

    Can you please follow the note Transaction Workbench error: System cannot determine your location for information
    This location and cannot derive from a tax jurisdiction (Doc ID 438718.1) and see if that helps

  • Determine the maximum use of the processor for a virtual computer in the custom user interface

    I want to determine the maximum use of the processor for a virtual computer in the custom user interface.  How can I do this?

    If I use a supermetric, there is no kind of attribute under CPU called "maximum use.

    Certainly, you get points for a long question! Although to be fair, it's probably my fault to feed you so much information to digest at once.

    1. I would say you can do two ways visually. Use the operations > detail view for 'normal ranges' use the upper limit of the normal range as your typical max. You want an absolute peak, add the metric of a graph or observe that highlight high and low watermarks.

    2. There are a lot of ways to display data, but if you want to display a single metric over a period of time, we could use the following widgets [on top of my head]:

    Top - N analysis

    Weather map

    Analysis of distribution of data

    Among these, I think of your desire for a "peak". Who you want real value, which eliminates the weather map. Then, I think that the concept of a 'Summit' and what is the best thing, I think that the 95th percentile... then I came with the widget of data distribution. The decision is ultimately yours given your particular use case.

    3. you can have it apply to several virtual machines - it's just a widget capable of being an independent provider or receiving widget (metrics, DO NOT choose to select resources). Each resource/metric will add to the widget and you can remove them if you like after it is added. You can certainly all the time you visit... It is date and time standard options you have in all the other widgets chart. With the widget data distribution, you want as much time as possible to get an accurate histogram of the cycles of workload.

    4. This is similar to the question above. You can certainly add parameters of individual resource or a DM that summarizes or AVG groups of resources. And as above, the delay is configurable, along with the other graph widgets.

    5. it's part of Q4 - you can sumN or avgN up to any number of resources with a SM, then discovers that SM in the widget of data distribution. When I said container, I mean an application, group resource pool... all that acts as a container parent within the vCOps.

    6. that's correct, SMs calc using data collected last points... aka single period of time. When you are referring to the longest period, I gave you a few examples of the attributes that are composed of several periods of time which are calculated and created by the adapter for VMware vCenter behvaior. In this case, you have the GVA 15 min CPU 1.5; These specific simple mobile GVA can be specific OR a copy using SMs. Next, you will have the chance is to find a way to distribute what you need through a widget [at that time].

    7. the distribution of data is not for export, it is for Visual functions. If you want the data in CSV, just use a typical chart of metrics and export to a csv and calc your own pics, avg, 95th, whatever.

    8. This is a bit of a mix of all your questions, put in place.

    You are right, if you added those 3 VMs, then calc was the 95th of the AVG. Like Q7, you would not export the data of the distribution of data because the raw data points are not - you do not pass the metric to a metric graphics standard and export via csv.

    Take advantage of...

  • How to determine the number of pixels of an object in a digital photograph?

    Hello world. I want to determine the number of pixels in an object that is part of a digital photo. I use cameras to film of ice pieces, breaking with tide glaciers or ice cliffs. I want to know the size of the ice segment that capture my digital photos. I know that the width and height of the cliff of ice in metres already, so I thought that I could convert the equivalent of 1 pixel:? m is really what I want to do. This way, whenever I see a block of ice, breakup, I can pull up the photo, describe the piece, calculate how many pixels to fill the area of ice removed by piece break and convert into zone meters 2 - giving me my order of size. If anyone has any ideas on how to do really, I would appreciate it thanks so much community. I thought Photoshop or Fireworks might help me with this, Ricky

    Make your selection

    Select the histogram tab, and then click the symbol at the top right.

    Choose expanded view

    See this:

Maybe you are looking for

  • Memory riser

    I have a Mac Pro 3.1 and one of the elevators of memory is dead. It's Elevator B and I was wondering if a riser scored will work in the B slot. Thanks for your help GC

  • issue of the iPad 2 Air headphone jack

    Is the audio jack for headphone out alone or is a connection of input/output dual function?

  • SED to delete a recording in applescript

    I'm trying to use sed in an Applescript script to delete a specific record number. When I enter a number for the registration number it works perfectly, but I would use a computed variable. I tried all kinds of escape characters and cited but forms c

  • Missing send button

    Since I updated to El Capitan 10.11.5 he's no button send in my email. And is not among the options customize the toolbar. What should do?

  • 2000 369MW Notebook PC: Windows 10

    Just please tell me how to get rid of Windows 10.  I was doing OK with "whatever"? I had--7, 8, or what I had.  I'm old, do not know how to understand everything that happens.  My '10' was a free upgrade.  Wish I would have NEVER done. My computer ha