Phase measured by two tone measurement have different dt

Dear all;
    I write a labview program for isolated a signal from the mixture of two signals by using a reference input. I choose to use butterworth filter and apply it in bandpass mode. To determine the band width of the filter, I also use two tone measurement vi to detect the phase of the reference signal and the signal I want to outcome. Unfortunately, when I run my program, warming with message "waveforms have different dt value" is always show. How can I fix this problem?
Regards
Attachments:
lock-in test.vi ‏88 KB

Well you got a bad case of the DDT's and dt's
If you get rid of those express vis and use a vi from the waveform measurments pallette you won't get fooled by that dt that does not exist coming out of your filter
Of course you COULD use the Digital IIR Filter vi off the Waveform conditioning palatte and keep your dt info but that doesnt get rid of your DDT's
Here is one quick mod
Jeff
Attachments:
lock-in testmod.vi ‏36 KB

Similar Messages

  • HT4913 Can I share my music on two devices that have different apple Id

    I have 2ipads with different apple I'd how do I share my iPad match in the cloud with the devices?

    Hi,
    You can't use family sharing or multiple Apple IDs with iTunes match.
    ITunes match is only attached to Apple id that you used to subscribe.
    Jim

  • Trying to join two views that have different column types

    I want to join view1 and view2 on region and city int columns. Need to break apart View1 varchar field into two Int fields and replace any non-numeric values with zeros.
    View1 has a single Region_City field that is VARCHAR. the last record is erroneous. the individual values for Region and City should always be Int. 
    0001-8374
    0222-0034
    3333-0001
    XXA-EEE
    View2 has Region and City as two seperate Int columns (i will seperate with comma just for display)
    Region,City
    1,8374
    222,34
    3333,1
    I want to create two new individual columns in view1 that will have Region and City each as a Int. And for any Region_city that is invalid numeric just use zeros in Region and City.
    I currently have this (in house ParseDelimited sproc), but am having trouble with the invalid numeric values (XXAA-EEE)
    REPLACE(LTRIM(REPLACE(dbo.ParseDelimited (Region_City, '-', 1), '0', ' ')), ' ', '0') as Region,
    REPLACE(LTRIM(REPLACE(dbo.ParseDelimited (Region_City, '-', 2), '0', ' ')), ' ', '0') as City,

    This is a way to do it, by no means the only way, but a way.  (The other way to achieve this would work fine, but would require functions inside functions inside other functions, including repeating at the very least "Patindex('-', RegionCity)"
    a few times.  In this situation, the APPLY statement comes in handy by making it a little easier to read.
    Declare @ExampleTable Table (RegionCity Varchar(99))
    Insert @ExampleTable /* This is just to recreate a test table */
      Select '0001-8374'
      UNION ALL Select '0222-0034'
      UNION ALL Select '3333-0001'
      UNION ALL Select 'XXA-EEE'
      UNION ALL Select 'a really bad error, no numbers or dash at all'
      UNION ALL Select '1-2'
      UNION ALL Select '12345678-98765432'Select RegionCity
        , Cast(  Coalesce( Case When IsNumeric(RegionCode) = 1 then RegionCode else '0000' End, '0000') as Int)  as RegionCode
        , Cast( Coalesce( Case When IsNumeric(CityCode) = 1 then CityCode Else '0000' End, '0000') as Int) as CityCode
      From @ExampleTable
     Outer Apply (Select CharIndex('-', RegionCity) as DashPos) CaDash
     Outer Apply (Select Substring(RegionCity, 1, DashPos - 1) as RegionCode
                        , SubString(RegionCity, DashPos + 1, 99) as CityCode where DashPos > 0) as CA2
    You didn't mention how bad the source data might be, how unpredictable it might be, whether it's always coded exactly as listed.  This way is reasonably flexible.
    EDIT: I used "IsNumeric" in this example.  It's quite an imperfect function, often best avoided, but I used here just because it's probably OK in this example.  
    This is probably better:  "Case When PatIndex('%[^0123456789]%', CityCode) = 0 Then CityCode else 0 End"

  • Same folder on two drives, both have different item amounts and sizes...

    Here is a screenshot. Left is the PowerBook drive, right is the external drive.
    http://img1.pic-host.net/img1/u/080107/d44c968e02.png
    This shot was taken minutes after the folder finished copying. Why is the folder on the external drive larger in size and have more items? Both drives have the same format, Mac Journaled.

    allocation size would be larger on a bigger capacity hard drive.

  • Can two people have different itunes accounts on the same computer ?, can two people have different itunes accounts on the same computer ?

    Can two people with two ipod touches have different itunes accounts on the same computer ??

    Yes but you they have to setup 2 different user accounts on the same computer.

  • How can I measure the phase difference of two input signal?

    Hello,
    I'm trying to measure the phase difference of two input sine waves with the
    same frequency.
    Is there anybody how I can do this with labview?
    Thanks,
    Dae-han

    This is my case! I have TDS3034 which can measure phase. However when I open Read Waveform Measurement vi that comes with tkds30xx.llb, I have a number of options under "measurement function" but not the phase measurement. May be I need another vi to do this?

  • Phase measurement RFSG RFSA

    Hello,
    Currently, I work with RFSA and RFSG to analyse signal wich is generated by the RFSG. I would like to measure phase in my RFSG module to do the AM/PM characteristics. For now, i didn't find any functions to measure this phase. Moreover, i found a function for phase measurement for RFSA but it did not work. This function is Get Frequency where we can have phase too.
    So i would like help to measure phase in RFSG and RFSA .
    Thanks for your help

    You should be able to measure phase directly from the IQ samples returned fro the RFSG ( arctan(Q/I) ).  However, there is a simple polymorphic VI that you feed in IQ samples....and out comes magnitude or phase.  I can't remember the exact name of the VI, but it's easy to find.
    Note...if you don't lock the RFSG and RFSA together via the 10MHz reference....the phase you measure may be corrupted due to clock drift.  Locking the two via the 10MHz reference will eliminate the frequency drift between the clocks....though you may end up with some constant phase offset that you could then subtract off.  However...this constant offset would likely be different every time you turned the devices on and off.
    Brandon

  • Mdx error : Query (11, 9) Two sets specified in the function have different dimensionality.

    Hi all
    i am getting the fallowing error for the below mdx , what may be the issue?
    Query (11, 9) Two sets specified in the function have different dimensionality.
    WITH SET LastSample AS TAIL(NONEMPTY([Date].[Hierarchy].members *[Time].[Hierarchy].members,[Measures].[Overall LU SR]))
    MEMBER [KPI Name] AS "Overall LU SR"
    MEMBER [KPI Value] As KPIValue("Overall LU SR")
    MEMBER [KPI Status] AS KPIStatus("Overall LU SR")
    MEMBER ObjectName as "Overall LU SR"
    MEMBER [Critical Threshold] as  [KPI Thresholds].[Threshold1].&[Overall LU SR].member_value
    MEMBER [Major Threshold] AS  [KPI Thresholds].[Threshold2].&[Overall LU SR].member_value
    MEMBER [Minor Threshold] AS 0
    MEMBER latestDate as [Date].[Hierarchy].membervalue, format_string = 'mm/dd/YYYY'
    MEMBER latestTime as [Time].[Hierarchy].member_caption
    SELECT  {latestDate,latestTime,ObjectName, [KPI Name], [KPI Value],[KPI Status],[Measures].[Critical Threshold],[Measures].[Major Threshold],[Measures].[Minor Threshold]} ON COLUMNS
    ,nonempty(LastSample) ON ROWS
    FROM [DRA]
    Surendra Thota

    hi all
    i got the solution . i have add measures dimension to the name  ie ,[Measures].[KPI Name],
    WITH SET LastSample AS TAIL(NONEMPTY([Date].[Hierarchy].members *[Time].[Hierarchy].members,[Measures].[Overall LU SR]))
    MEMBER [KPI Name] AS "Overall LU"
    MEMBER [KPI Value] As KPIValue("Overall LU SR")
    MEMBER [KPI Status] AS KPIStatus("Overall LU SR")
    MEMBER ObjectName as "Overall LU SR"
    MEMBER [Critical Threshold] as  [KPI Thresholds].[Threshold1].&[Overall LU SR].member_value
    MEMBER [Major Threshold] AS  [KPI Thresholds].[Threshold2].&[Overall LU SR].member_value
    MEMBER [Minor Threshold] AS 0
    MEMBER latestDate as [Date].[Hierarchy].membervalue, format_string = 'mm/dd/YYYY'
    MEMBER latestTime as [Time].[Hierarchy].member_caption
    SELECT  {latestDate,latestTime,ObjectName,[Measures].[KPI Name], [KPI Value],[KPI Status],[Measures].[Critical Threshold],[Measures].[Major Threshold],[Measures].[Minor Threshold]} ON COLUMNS
    ,nonempty(LastSample) ON ROWS
    FROM [DRA]
    Surendra Thota

  • Measure write different time

    Hi:
    I would like to measure data every 200ms, but only every 600ms I want to write this data in an excel sheet. Does anybody know how to solve it?
    I tried it with two while loops with different timers, but this doesn't work.
    Please see my attached VI.
    Thank you!
    Attachments:
    test_Datenerfassung.vi ‏20 KB

    You've posted this question to the Dynamic Signal Acquisition board instead of the LabVIEW board.
    Your main problem is that you have the file write outside the loop where you are generating the data. This cannot work. The file write loop will not receive any data from the other loop until the other loop finishes. The ay you have it wired, the file write loop would also only get the result of the very last iteration of the other loop. These are basic dataflow principles in LabVIEW.
    You can place an elaspsed time function in the main loop set to 600 msec and put the file write inside a case statement. Wire the Time has Elapsed output to the case statement. You could also use the Quotient and Remainder function in a manner as shown below to write every third iteration.
    Message Edited by Dennis Knutson on 08-13-2007 08:10 AM
    Attachments:
    Write Every Third Iteration.PNG ‏3 KB

  • I have two iphones and one Apple id. Pretty confused how to have different content on them.

    Hi All,
    I have my old iphone 5s and recently I bought a iphone 6. What I want to do is to use same apple id on both of them, but I want to have different apps and media on them.
    I plan to use the iphone 5s as my 2nd phone, so I do not need same apps/music/movies/books on them. Any tips how I can keep them different? Every time I sync I have to manually select the books and music I want to have on my phone. I want to create two different profiles for my phones which will have different apps, books and music.
    I do not use icloud, so that is not a problem for me.
    Thanks,
    Sas

    Have a look here...
    setting-up-multiple-ios-devices-for-messages-and-facetime.html

  • Hi, when I upload music into itunes from a cd it sometimes appears in itunes as two different albums and split up the music in 2 or even three albums....how can i merge these albums...this is particularly true when one album may have different composers?

    Hi, when I upload music into itunes from a cd it sometimes appears in itunes as two different albums and split up the music in 2 or even three albums....how can i merge these albums...this is particularly true when one album may have different composers?

    Generally setting a common Album title and Album Artist will fix things.
    For compilations that aren't, select all tracks, Get Info, and on the option tab set Part of a Compilation to No. If it already says No tick the box alongside, then click OK.
    For deeper problems see Grouping tracks into albums.
    tt2

  • HT5622 Can I have two apple id's on the same iPad. Example me and my spouse want to share the iPad but have different id's

    Can I have two apple id's on the same iPad. Example me and my spouse want to share the iPad but have different id's

    iOS does not support multiple users like a desktop OS does.
    You can use a web interface to your respective email accounts
    to keep things separate; but there is no provision for otherwise
    separating photos, media, etc.
    If you wish, you can contact Apple to let them know of your desire:
         www.apple.com/feedback

  • My wife and I have different Apple ID, can we share our music on the two devices

    My wife and I have different Apple ID, can we share our music on the two devices

    You do not need to ask the same question twice. Stick with the first post that you started here.
    https://discussions.apple.com/message/21121337#21121337

  • Can i have different alert tones for Multiple email accounts?

    Would like to have different alert tones for each email account. Is there a way to accomplish it?

        Hi there, DawgFan1980!
    I understand the purpose of the different notification sounds. The iPhone only allows 1 tone for e-mail accounts. At this time, this cannot be changed.
    Thank you,
    LenaA_VZW
    Follow us on Twitter @VZWSupport

  • We have an ipad two iphones and an ipod nano can we sink all of them to one itunes the items have different itune accounts

    we have an ipad two iphones and an ipod nano can we sink all of them to one itunes the items have different itune accounts

    Did you change the email address or create a new Apple ID?
    If the email address associated with the account was merely changed, sign out of the Apple ID on the devices and sign in using the new credentials.

Maybe you are looking for

  • How to get cumulative in reports

    Hi There.. I am supposed to get the following format. The Data which I retrieved frm the query is 'a' and 'Total'.For 'Cumulative Total' I have to get it frm 'a' and 'total'..... I hope u guys got the point... a Total Cumulative Total a100 100 0 150

  • Odd icons superimposed on screen saver

    On my MacBookPro, I have the screen saver set to my Pictures folder. When an image comes up, there will occasionally and randomly be superimposed over the top of the image what looks like a bitmapped icon. It will be a flag, or a red circle with a wh

  • Schudeler error in BIP

    HI Experts, while I schedule the report the following error occured.Plz guide me regarding this issue.... java.lang.RuntimeException: oracle.apps.xdo.security.ValidateException at oracle.apps.xdo.servlet.security.SecurityManagerImpl.impersonateLDAPPr

  • Zwei Fragen zu Pagemaker

    Hallo, ich habe zwei Fragen zum PageMaker 7 (wer hätte das gedacht, bei dem Thementitel). Zum einen: Gibt es eine Möglichkeit, eine geometrische Form wie Kreis oder Polygon mit einem Farbverlauf zu füllen (statt nur mit Farbe/Muster). Möglich ist nat

  • I keep getting script errors regardless of the FF version I'm running. This time it's on 3.6 and the error is Script: file:///C:/Program%20Files/Mozilla%20Firefox/modules/utils.js:1027

    I had to downgrade from ver. 4.0 back to 3.6 for my job. This version is the only on compatible with their add-ons and it gives me script errors at least twice a day. The only add-ons I'm running are for work and others who do this job don't have thi