Remove DC component from Zoom FFT

I am performing vibration analysis using the sound and vibration toolkit. Is it possible to remove the dc component of a frequency domain signal generated from a Zoom FFT? Or remove the DC component in the time domain signal prior to performing the Zoom FFT?
Thanks

You might consider a high pass filter on the data prior to the FFT operation.  THis would in effect AC couple the signal - removing the DC component.  You could also use the AC/DC estimator and subtract the DC result from your signal. 
Preston Johnson
Principal Sales Engineer
Condition Monitoring Systems
Vibration Analyst III - www.vibinst.org, www.mobiusinstitute.com
National Instruments
[email protected]
www.ni.com/mcm
www.ni.com/soundandvibration
www.ni.com/biganalogdata
512-683-5444

Similar Messages

  • Mass Removal of component from Maintenance Order Component list

    Hi Gurus,
    I had a long list of material which have been set with deletion flag. With this list, I had remove them from BOM using CS20. Does anyone knows how to remove a component from the maintenance order component list based on that material had set deletion flag in material master & that GI had not been done? Appreciate your help.
    Best regards,
    David Tan

    I guess we dont have std function to do this..
    I will suggest to take help of an abaper & create a code to find material & delete from orders.
    Regards

  • Hi I need Event for removal of component from UIEditor

    Hi, JDev team
    I need a event to identify removal of component from UIEditor.
    I have one method of doing this.Apply viewSelectionListener to the UIEditor but i can'nt use this approach for some reasons.Is there any other way out??

    I'm sorry, but Apple does not provide a downgrade path for iOS. Because downgrading is unsupported by Apple we cannot discuss it on these forums.
    You may leave comments at Apple Feedback.

  • How to remove a component from a panel

    i have a table attached to a scrollpane...the scroll pane is attached to the CENTER of a panel that have a borderlayout like this :
    JScrollpane sp = new JScrollpane(table);
    add(sp, BorderLayout.CENTER);
    how to remove the table from the center....i have tried : remove(sp); and then calling revalidate(); but that did not work....
    please help....
    Thanks in advance

    i did not try it...but i insert a repaint() after the revalidate and it seems to work...
    thanks a lot

  • Exit/BAdI for removing the component from subcontracting

    Hello Friends,
            My client has a very unusual requirement. For a subcontracting PO, they wish that only the finished product GR should be posted in MIGO and the 543 movement type which is happening for the component, shouldn't take place at the same time. Right now this is automatically happening.
              Is there a BADI or exit where we can control this? It's little urgent. Any small help will be appreciated.
    Thanks & Regards,
    Shaheen

    Hello friends,
            I know my question wasn't so straight. But I found a BAdI, where I could make the quantity of the component zero. But in MIGO, when you check the checkbox 'Item_OK', right at the bottom, it selects both the items. That is the finished product and its component. Is there someway that, only Finished product should be selected?
    Awaiting a miracle!
    Regards,
    Shaheen

  • Remove component from JPanel

    Hi,
    i've to remove a component from the center (BorderLayout.CENTER) of a JPanel without knowing the name of the component at runtime. I know only that the component is in the center position of the panel. How can i do?
    Thanks
    Luca

    normally what i will do i removeall first and then i add the north or south component so you dont have to worry what is in your center of the panel

  • FM for deleting Component from Ibase Hierarchy

    Hi,
    Is there any FM for deleting Component from Ibase Hierarchy.
    I have tried using the FM "CRM_IBASE_COMP_DELETE", it is anyway deleting the component from the hierarchy but not those component
    whose is already assigned to a Contract.
    I have read these similar thread of only deleting a component but it was not very helpful in my scenario.
    In CRM, standard way of removing the component from Ibase Hierarchy is to "CUT" the component  and save. The mentioned component will not
    be seen in Ibase hierarchy.
    So is there any FM which can actually remove or cut the component from the hierarchy even though it is assigned to any contract etc.
    Awaiting for your expeditious help on this issue,
    Thanks and Regards,
    Jojy

    Hi Naresh,
    Thanks for your response,
    Is there any way of doing the same from Std. FM apart from doing it manually.
    Mine is Interface scenario in which the call will be instantaneous.
    I have tried to dismantle the component also, but it will be remain present in Ibase hierarchy even though it is associated to any contract or not with dismantle sign in it's hierarchy .
    I want to cut it so that it will not remain in Ibase hierarchy, it can be present in CRM system.

  • Removing inputtext component by button click

    Hi,
    I m able to add input text component dynamically by the following code.
    public String cb1_action() {
    // Add event code here...
    System.out.println("in cb1_action3 - 1");
    UIComponent button;
    button = findComponentInRoot("cb1");
    RichPanelGroupLayout pgl;
    pgl = (RichPanelGroupLayout)button.getParent();
    List<UIComponent> children;
    children = pgl.getChildren();
    RichInputText it;
    it = new RichInputText();
    it.setLabel("New textbox " + (children.size() ));
    children.add(it);
    AdfFacesContext.getCurrentInstance().addPartialTarget(pgl);
    System.out.println("in cb1_action3 - 1 done");
    return null;
    but how to remove the same inputtext field/component dynamically???

    Hi,
    Try to remove the component from the
    List<Component> childs = (List<Component>)pgl.getChildren();
    childs.remove(inputText);//pass the component
    AdfFacesContext.getCurrentInstance().addPartialTarget(pgl);

  • Remove item/image from JFrame

    hi,
    i'm trying to remove this item called reels[0] which is an image from the ContentPane
    public class FruitMachine extends JFrame {
         DGESpinnerHold []      reels;
         JButton          jBspin;
         MoneyBox          money;
         boolean          taken = false;
         public FruitMachine() {
              setTitle("Will's Fruit Machine");
              addWindowListener(new WindowAdapter() {
         public void windowClosing(WindowEvent e) {
         System.exit(0);
              reels = new DGESpinnerHold[3];
              for(int i = 0; i < 3; i++) reels[i] = new DGESpinnerHold();
              getContentPane().setLayout(new BorderLayout());
              getContentPane().add(reels[0], BorderLayout.WEST);
              getContentPane().add(reels[1], BorderLayout.CENTER);
              getContentPane().add(reels[2], BorderLayout.EAST);
              Action action = new AbstractAction("SPIN REELS OR CLAIM PRIZE") {
         // This method is called when the button is pressed
         public void actionPerformed(ActionEvent evt) {
              if(taken == false &&
    reels[0].reel.imageNo == reels[1].reel.imageNo &&
    reels[0].reel.imageNo == reels[2].reel.imageNo) {
                   money.save(5);
                   taken = true;
              else {
                   if (money.how_many_left() <= 0) {
                        getContentPane().remove(reels[0]);
                   } else {
                        if (money.spend_one() == false) return;
                        for(int i = 0; i < 3; i++) {
                             reels.startSpin();
                        taken = false;
    as you can see i have tried using getContentPane().remove(reels[0]);
    tmany thanks, Will

    ...and so, what is the result ?
    BTW: after removing the component from frame, a good habit is to use revalidate() or reppaint()on it.

  • How to remove the border from an AWT Component (specifically a ScrollPane)

    I've been trying to remove the border from an AWT ScrollPane, but having no luck.
    I've tried setting the bounds on the ScrollPane to get rid of the border:
    ScrollPane scrollPane = new ScrollPane();
    scrollPane.setBounds(-2, -2, getSize().width+4, getSize().height+4);
    I've also tried overwriting the paint method of the ScrollPane but it didn't draw anything:
    private class CustomScrollPane extends ScrollPane
         public void paint(Graphics p_g)
              super.paint(p_g);
              Graphics2D g2 = (Graphics2D)p_g.create();
              g2.setColor(Color.MAGENTA);     //tried magenta so I could easily see it
              g2.drawLine(0, 0, 0, getSize().width);
    Is there anything else I should try? (I wish AWT components had a setBorder method)

    Is there anything else I should try? (I wish AWT components had a setBorder method)Actually this probably isn't possible. One of the main drawbacks of AWT was that since everything is connected to peers, you can't actually draw over or customize the view of your AWT component.
    The only recommendation I might make would be that you could try creating Canvases around your ScrollPanel that draw over the border

  • How to delete/remove the software component from integration repository

    Dear All
    How to delete/remove the software component from integration repository which we have created some Data and message types.
    Regards
    Blue

    Hi,
      Follow the steps below to delete the Software component:
    1. Delete the created Data Types, Message Types, Message Interfaces, Message Mappings, Interface Mappings and other imported objects like RFC's or IDoc's. Activate all changes.
    2. Then delete the namespace and the default datatypes present with the namespace after checking "objects are modifiable".
    3. Then delete the SW component, after placing the radio button in "Not permitted".
    Regds,
    Pinangshuk.

  • Removing duplicate values from selectOneChoice bound to List Iterator

    I'm trying to remove duplicate values from a selectOneChoice that i have. The component binds back to a List Iterator on the pageDefinition.
    I have a table on a JSF page with 5 columns; the table is bound to a method iterator on the pageDef. Then above the table, there are 5 separate selectOneChoice components each one of which is bound to the result set of the table's iterator. So this means that each selectOneChoice only contains vales corresponding to the columns in the table which it represents.
    The selectOneChoice components are part of a search facility and allow the user to select values from them and restrict the results that are returned. The concept is fine and i works. However if i have repeating values in the selectOneChoice (which is inevitable given its bound to the table column result set), then i need to remove them. I can remove null values or empty strings using expression language in the rendered attribute as shown:
    <af:forEach var="item"
    items="#{bindings.XXXX.items}">
    <af:selectItem label="#{item.label}" value="#{item.label}"
    rendered="#{item.label != ''}"/>
    </af:forEach>
    But i dont know how i can remove duplicate values easily. I know i can programatically do it in a backing bean etc.... but i want to know if there is perhaps some EL that might do it or another setting that ADF gives which can overcome this.
    Any help would be appreciated.
    Kind Regards

    Hi,
    It'll be little difficult removing duplicates and keeping the context as it is with exixting standard functions. Removing duplicates irrespective of context changes, we can do with available functions. Please try with this UDF code which may help you...
    source>sort>UDF-->Target
    execution type of UDF is Allvalues of a context.
    public void UDF(String[] var1, ResultList result, Container container) throws StreamTransformationException{
    ArrayList aList = new ArrayList();
    aList.add(var1(0));
    result.addValue(var1(0));
    for(int i=1; i<var1.length; i++){
    if(aList.contains(var1(i)))
         continue;
    else{
    aList.add(var1(i));
    result.addValue(var1(i));
    Regards,
    Priyanka

  • How can I remove the applications from the Content Administrator

    I had undeployed the applications from Content Administrator in two ways:
    A:
    1. Start the tool using the go.bat located in \usr\sap\<SID>\<Instance Name>\j2ee\admin folder
    2. Log in with an Administrator user.
    3. Under the Server node click Services-> Deploy.
    4. In the runtime tab, on the right hand side screen click on the Applications checkbox. The list of all deployed applications appears.
    5. Select the application and click on the Remove button.
    B:
    Undeploying using SDM remoteGUI.
    after I finished that,the application still exist in the browse of Content Administrator Web Dynpro.
    But it is'n invailable.When I click the application name,it throws exceptions:
    Failed to get the list of names of referenced deployable objects for deployable object 'local/Welcome'.
    Failed to get list of defined JCO clients for deployable object 'local/Welcome'.
    Failed to get the list of names of referenced deployable objects for deployable object 'local/Welcome'.
    Failed to get enable state for 'local/Welcome'.
    No resource bundles found for development component ''local/Welcome''.
    My question is , how can I remove it form the list.

    Hi,
       Have you restarted the server after removing the application from the Visual Admin?
    Regards,
    Satyajit.

  • Remove EDIT button from FPM ToolBar

    Hi All,
    I am new to FPM, and I am working on SRM 7.0. In the Monitor Shopping cart WD application, after search event, a list of Shopping Carts are displayed, when we click on one of the SC number, the SC screen opens as a new Pop-up.
    Here we have an EDIT button, and we need to remove this button from this screen.
    Technical Details(EDIT button):
    Application: /SAPSRM/WDA_L_FPM_OIF
    Web Dynpro Component: FPM_OIF_COMPONENT
    Window Information: FPM_WINDOW
    View Information: CNR_VIEW
    Configuration ID: ZSAPSRM_WDCC_FPM_OIF_SC_PROFNL
    Technical Details(SC screen):
    Application: /SAPSRM/WDA_L_FPM_OIF
    Web Dynpro Component: /SAPSRM/WDC_UI_SC_DOFC_HD
    Window Information: IV_L_FPC_CA_HDR
    View Information: V_SC_BOFC_HD
    Configuration ID: /SAPSRM/WDCC_FPM_SC_HD_PR
    Appreciate any help on this.
    Thanks,
    Prabhakaran

    Hi Prabhakaran
    You will need remove the static usage of config id ZSAPSRM_WDCC_FPM_OIF_SC_PROFNL and make use of dynamic component configuration depending on the particular scenario.
    Create two configuration id's ZSAPSRM_WDCC_FPM_OIF_SC_PROFNL1 and ZSAPSRM_WDCC_FPM_OIF_SC_PROFNL2. Set visible property of Edit button as visible in the first config ID and none in the second.
    Now assign this config ID dynamically depending on the scenario. If scenario is Monitor SC, then assign config ID ZSAPSRM_WDCC_FPM_OIF_SC_PROFNL2, else assign config ID  ZSAPSRM_WDCC_FPM_OIF_SC_PROFNL1.
    Please refer the below document for usage of dynamic component configuration.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/70337875-167f-2e10-daa7-a1c69d55ee95
    Hope this helps.
    Regards
    Lorraine

  • How do I remove a crop from a clip?

    Hi,
    I have been putting together a selection of clips for a project. I applied a crop to one of the clips... but for some reason other clips have ended up cropped as well. How this happened I do not know. Best I can figure is that the clips I selected after I applied the first crop were also cropped as well.
    I can see the small crop icon in the upper-left corner of the clips but How do I remove the crop... or do I have to remove the clip from the project and start over again???
    Message was edited by: hassiman

    AppleMan1958 wrote:
    Select the clip. Then open the Inspector. Go to the Rotate, Crop, Ken Burns tab of the Inspector. Here you can switch between CROP, FIT, and KEN BURNS. You can also change the dimensions of the crop box (but you cannot change the aspect ratio.)
    CROP will cut off the top and bottom. FIT will letterbox to make it fit.
    You might also check to see if you have turned on Image Stabilization. This works by zooming in, which looks like a crop. You can turn off Image Stabilization in the Inspector under the CLIP tab.
    "Select the clip. Then open the Inspector. Go to the Rotate, Crop, Ken Burns tab of the Inspector. Here you can switch between CROP, FIT, and KEN BURNS. You can also change the dimensions of the crop box (but you cannot change the aspect ratio.)
    CROP will cut off the top and bottom. FIT will letterbox to make it fit."
    I am not sure I understand completely. I selected a clip and opened the Inspector, chose "CROP" and then adjusted the crop for that clip.... but exactly how do I turn that off IE reverse the process so that no adjustment is applyed?

Maybe you are looking for

  • LR 2.6or7 and LR3 on same machine? Want to test...

    I'd like to see if my setup will have problems reported here. Can I install BOTH programs? (That would add LR3 to existing 2.6 install.) I really just started using LR2.x a little while ago but I want to try LR3 with non-production images. I don't ha

  • Deploying jdev appln to weblogic-Errors !Help Resolve

    while creating a new connection and deploying to it am gettin th following error Java Virtual Machine Launcher :Could not find the main class java.lang.NoClassDefFoundError: weblogic/Deployer Exception in thread "main" **** weblogic.deploy returned w

  • Clock in Clock Out

    Hi, After running the time evaluation the clock in and clock out corrections is not appearing on the portal. We are using CATS for service provider to enter the clock in and clock out. Is there any back ground jobs which have to be run for the data t

  • Storing music on my iPhone by album name

    All of my iTunes albums are stored alphabetically on my mac but are by album title on my iPhone 4s. How can I get them both to look the same?

  • R6025 error when inporting sequences.

    Hello All, I was wondering if someone has insight as to what could be causing a "r6025 - pure vital function call" error. I have been having this problem on and off for a while now. I see alot of others have had/are having this error and I have alrea