Display Multi Port S-Parameter data

Hi,
there are a lot of programs out to display 2 Port S-Parameter. But what I'm missing is a software that is able to plot Multi port S-parameter data. I would think of some kind of Matrix where you can just select any Port combination that you would like to be displayed by a matrix of boolean selectors. I guess Labview would be an ideal tool for implementing a method for displaying S11, S21, FEXT and NEXT. 
Does anybody know if there is an exisisting VI that allows to plot multiport S-Parameter data ?
Thanks and regards
Hermann

Hi Marco,
thanks for the Feedback.
Í understand, that everything is possible ... I just hoped, that I don't have to programm it on my own  ;-), as such a VI would be something many people could need.
There is a nice vi to display a TDMS file. I'm looking for something similar for S-parameters.
One Example: I do have two 10 Port S-Parameter sets from two different connector vendors and I would like to compare it. Not only displaying and comparing it, but also converting it from Single ended to Differential would be interesting. 
But I guess as you mentioned, that there is no "special" example vi on the web I have to implement it on my own  :-(
Regards
Hermann

Similar Messages

  • Displaying multi valued number parameters on a report.

    I need to display the contents of some muti valued parameters on my report.  I have received two suggestions neither of which I can get to work. 
    The first suggestion uses the Join function as follows:
    WhilePrintingRecords;
    Join({?Parameter}, Chr(10));
    This only seems to work with string arrays.  I can't seem to get it to work with number arrays.
    The second suggestion is as follows. 
    WhilePrintingRecords;
    Shared numberVar counter;
    //increments the loop so that all parameter entries can be displayed
    Shared stringVar display;
    //creates a string "running total" so that all entries can be displayed
    for counter := 1 to Count({?Parameter}) do
    display := display + ToText({?Parameter}[counter],0,"") + Chr(10);
    display;
    Even though the Parameter is a multi valued number parameter it gives the following error when converting it to Text:
    "A number, currency amount, boolean, date, time, date-time, or string is required here."

    The formula for multi-value numeric parameter works just fine.
    WhilePrintingRecords;
    Shared numberVar counter;
    //increments the loop so that all parameter entries can be displayed
    Shared stringVar display;
    //creates a string "running total" so that all entries can be displayed
    for counter := 1 to Count({?Parameter}) do
    display := display + ToText({?Parameter}[counter],0,"") + Chr(10);
    display;
    Please double check the "options" area of the multi-value numeric parameter.  The only way I can replicate the error you receive is if I choose both "Multiple Values = True" and "Range Values = True".  If this is the case then set Range values to false and see if it works while leaving Multiple Values = true.

  • Multiple Default Values in a Multi-Select LOV Parameter?

    Hi,
    I have a report in BI Publisher standalone version 10.1.3.4. The report has a list of values called org_lov. This lov is attached to a multi-selection p_org_code parameter from which it is desirable to also have multiple default values.
    For example, if org_lov has the following values:
    100
    101
    102
    103
    104
    105
    106
    I would like to have 3 default values and have 100, 101,105 as the defaults if the user doesn't specifically select anything from the LOV. So far my testing has only allowed a single default value.
    Here are my settings:
    Data type = string
    Multiple Selection = checked
    Can select All = checked (all values passed)
    On the Default Value field, I have tried the following:
    1. 100, 101,105
    2. [100, 101,105]
    3. '100', '101','105'
    4. (100, 101,105)
    5. ['100', '101','105']
    6. ('100', '101','105')
    I don't need these default values highlighted in the LOV, I just need it passed correctly to the query (a data template).
    Thank you in advance for any input.

    Hi,
    Sorry for the delayed reply. I tried what you suggested but the problem is that by having the "Multiple Selection" property of the parameter unchecked, the result is that it allows the user to only have a single value passed. The user wants the option to select multiple values AND also have the multiple default values.
    Thanks anyway.

  • How to display multi-channel image in the 'proxy'?

    There're many examples to show how to display composite channels in the 'proxy'. But I don't find any example to show how to display multi-channel image in the 'proxy'. I found that I can use PSPixelOverlay to display alpha channel data like this:
    int nSpotChannel = gChannelCount - 4;
    PSPixelOverlay* overlay = new PSPixelOverlay[nSpotChannel];
    for(int i = 0; i < nSpotChannel; i++){
           if( i != (nSpotChannel - 1) )
                 overlay[i].next = overlay + i + 1;
           else
           overlay[i].next = NULL;
           overlay[i].data = gChannelData + (4 + i) * nPlaneBytes;
           overlay[i].rowBytes = gProxyRect.Width() * gDocDesc->depth / 8;
           overlay[i].colBytes = 1;
           overlay[i].r  = 230;
           overlay[i].g = 161;
           overlay[i].b = 174;
           overlay[i].opacity = 255;
           overlay[i].overlayAlgorithm = kStandardAlphaOverlay;
    pixels.pixelOverlays = overlay;
    Then, Seeing red part, it will trigger a new problem, that is how to get the color value of the alpha channel by plung-in itself? It seems that no channel color value info is in FilterRecord.
    If you have other solution, please tell me. Many thanks!

    This is what I've been doing - was just curious if there was a way to see a more cohesive image.
    If the individual EQ plugins are in fact the answer, is there any way to smooth how the Analyzer displays? The image I posted above, all of the tonal curves are very smooth. The analyzer tool shows a lot of peaks and valleys within the overall curve and it's hard to pinpoint each instrument's "sweet spot." Vocals for example are very hard to spot.
    - Morgan

  • Displaying Multi Line Text

    Hi,
    I am having issues in displaying multi line text on a Text Item. Basically there is data in the database column DetailText which is stored like this with carriage returns :
    If I look at the column in Toad it is formatted with all the carriage returns correctly eg.
    Hello
    World
    When I display this in my StaticStyled Item it displays like "Hello World" in one line. I want to be able to display it as it is with the carriage return on 2 seperate lines.
    I have looked in this forum and one search 2 places and one suggestion was to use RawText Item type. I have tried changing the Item Type to Raw Text and FormattedText but it doesn't make any difference. The lines are still displayed horizontally instead of vertically. Another place I saw was to use OAHTMLWebBean but doesn't show how I can do this.
    This should be simple enough but I have searched the DevGuide and this forum and couldn't figure out the solution. Any help would be appreciated.
    Thanks

    Hi,
    I tried to do it in different way. What i did is I have created a item of type formattted text and set its text like:--
    <html>User authentication failed. <br*> Cause: Invalid password.</html> --remove *
    So I am able to see the prompt like :-
    User authentication failed.
    Cause: Invalid password.
    Hope this helps you...
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • SG-300 CLI How to display trunk ports

    Hello
    I have a very simple question about CLI on SG-300. How to display trunk ports via cli? I have switch with 28 ports and I wanted to see what switchport mode is applied to every port - or simply we can just focus on trunk ports. On Cisco Catalysts there is "show trunk" command in order to get list of ports in Trunk mode. Is there any way to do it on SG-300?
    srv-sw-1#show version
    SW version    1.3.0.62 ( date  02-May-2013 time  14:55:01 )
    Boot version    1.1.0.6 ( date  11-May-2011 time  18:31:00 )
    HW version    V02
    thank you
    michal

    Hi,
    I remember something at least that works port by port:
    >#sh int switchport fa 1
    Port : fa1
    Port Mode: Trunk
    Gvrp Status: disabled
    Ingress Filtering: true
    Acceptable Frame Type: admitAll
    Ingress UnTagged VLAN ( NATIVE ): 1
    Port is member in:
    Vlan               Name               Egress rule Port Membership Type
    1                  1                  Untagged          System
    Displays detailed info about each port, range command will not work, but it's something.
    You can check for vlans and or tags with:
    sh vlan
    sh vlan tag 1.
    NTex

  • How do you display multi line text

    Hi
    How does one display multi line text? I would like to display address information on the screen so that the user can select it and copy/paste it into another application (ms word).
    I have the address information as separate columns (address1, address2, city, province, postal code) so I've changed the query on my view object to add it as address1 || chr(10) || address2 || chr(10) || city ....
    If I display it on the page as an output text, it all displays as one line (okay, the chr(10) thing did not work but that's beside the point).
    In general, is there a way to display multi line text? What component is suitable for this, if there is one?
    Thanks

    You can use normal outputText components in a panelGroupLayout (vertical layout) and add each attribute to it. The remove the labels or set the components to simple. You can then mark the data in the browser and use normal copy&paste to transfer the data.
    If you want to output longer text with line breaks you can use an outputText with escape=false and use the br html tag to generate a line break;
    <af:outputText escape="false"
    value="+++++++long<br>test<br> this is a long text in multiple lines" id="ot10" truncateAt="#{viewScope.ToggleBean.truncateLength}"/>Timo

  • Custom fields not display in SRM5.5 Basic Data Frame

    Hello Everybody,
          I am working on SRM5.5 Server which i have to add two custom fields in Basic Data Frame..
         No field is display in basic data frame After I added those fields in INCL_EEW_PD_ITEM_CSF_SC and INCL_EEW_PD_ITEM_CSF.
        I added these fields by help of 672960 OSS notes..
       Add also when i execute the program BBP_DYNPROS_GENERATE where I entered the program name as SAPLBBP_PDH_CUF and execute but non of them is working fine..
      Is there anything else do i need to display custom fields in basic data frame??
    I have one more question..
      When you logon through SAPGUI and goto BBPSC01 t.code where you see lots of fields in basic data frame such as unloading point and all.. But those all fields does not display when you logon through WebURL..
      I checked is there any BAdi such CUF or Screenvarient or some Badi has been actived but non of the Badi has been implemented..
      To display all the fields which are display in GUI Mode also should display in URL..
      To bring this functionality , What do i need to do?
      I appreciate if you answer these questions..
    Thanks,
    John.

    Hi Disha,
    We are trying to add custom fields to the Shopping Cart Header. We are using SRM 5.0. We added the fields to the structures "INCL_EEW_PD_HEADER_CSF_SC" & "INCL_EEW_PD_HEADER_CSF".  We are able to see the custom fields. But the issue is , we are able to see the custom fields in the Shopping Cart one step shop scenario. Whereas when we run the wizard which is a 3 step scenario, we are not able to see the custom fields.
    Technically speaking, the custom fields are visible for the ITS BBPSC01 & BBPSC03 , where as these custom fields are not visible for the ITS BBPSC02.
    Please let me know, if we need to append the fields to some other structure to be able to see them in the Shopping cart wizard also.
    I will be gald to provide any kind of info.
    Thanks in advance...

  • How do I have photos in iPhoto display on their face the date and time?

    How do I have photos in iPhoto display on their face the date and time? Displaying in the camera shows this. When I check edit the info is there. How do I have that displayed on the face of the photo when I view it in iPhoto?

    How do I have photos in iPhoto display on their face
    the date and time? Displaying in the camera shows
    this. When I check edit the info is there. How do I
    have that displayed on the face of the photo when I
    view it in iPhoto?
    Hi! My name is Tom from San Diego, CA. I have the exact same question as you. That is, I would like to be able to print out a photo from iphoto with the date that picture was taken displayed on the face of it. In this way, someone looking at that picture in a photo album years later would know when it was taken. Did you ever find a method to print copies of photos out of iphoto with the date displayed on the print? Thanks for your help!

  • HT201269 Is there a way to download/port the missing data/SMS to one iPhone without overwriting the new SMS on the newer iPhone?

    SMS Transferring/downloading/backup : Is there a way to download/port the missing data/SMS to one iPhone without overwriting the new SMS on the newer iPhone? Here is my dilemma. My iPhone quit working and I couldn’t get it fixed as quickly as I needed to. I bought a used iPhone and started using it normally and downloaded the backup from itunes/icloud. There was a large gap in data where the first iPhone didn’t backup when I thought it had. I have SMS data on both phonesnow and  I need them for a court hearing. I have since had the other iPhone repaired and working perfectly. Will downloading a backup wipe out the newer SMS data? I am nervous because I can’t lose the information or my case mey be compromised. Any “Real Help” including programs that work to accomplish this would be very helpful. Thank You in advance…

    No, direct access to manipulating the phone's filesystem is not permitted for 3rd party apps in the iOS.  It can't be done without hacking the phone, which you certainly don't want to do.  The messages can be combined and viewed on your computer, but not on a single phone.

  • How do I connect a new Thunderbolt MBP to and old 23" HD Cinema Display ADC port

    A question Im sure many have asked but I cant find a straight forward answer.
    I simply will be buying a new thunderbolt MBP 15 and NEED to connect it an old 23" Apple Cinema Display that uses the old ADC connector.
    Can I do it and if so how? I realise theres a potential under powering issue?
    Thanks

    Hello Sigh
    I am sure there is no way to get your ADC connector display to function with your new Mac Book Pro.
    I tried everying I could and gave up and purchased a 24" Apple refurbbished Cinema Display for $599 + tax on 4/27/2011. The Apple part number is FBXXXXL/A, Model A1287.
    Gave my  year 2002 ADC 22" display to a friend.
    d
    Sent- Tuesday, August 9, 2011-- 3:49 PM(Pacific Time)
    Don Macdonald
    < Edited by Host >
    Re: How do I connect a new Thunderbolt MBP to and old 23" HD Cinema Display ADC port Jul 8, 2011 4:58 PM (in response to Russy47)
    Got my new MBP 2011 today. Hooked it up to my 23" Apple Cinema Display fine, using the Apple DVI to ADC converter > Mini Display port adaptors. I could then mirror display, but only at 1440 x 900 resolution.
    My dream is to have it like my old laptop--I mostly leave it shut, and main display is on the Cinema Display. So far, if I close the laptop lid on my new MBP, display shuts off. Also, can't get it to bump up the resolution to 1920.
    Sigh.

  • TS2002 using a multi-port adapter to increase the number of USB ports - affects system functioning?  Port priority?  In advance, I send my thanks!

    Hello.  I've never "started a discussion" before.  Ah well I've always had good luck with the communities so here goes.  Today I plugged a Belkin multi-port adapter into my MacBook Pro running OS X Version 10.6.8  This enabled me to plug in my keyboard; mouse and printer.   Yes after two years I wanted to be back to an independent full keyboard and mouse.  BUT ALAS!  Now the little spinning wheel keeps appeariing while I'm on the Internet and I learned through my "Help" app that I have "slow start-up, pausing at Initializing network or "Configuring network time"  (sounds like some of the men I've dated).
    Could it be the multi-port adapter?  Should I use a different model?  The abiltiy to have the printer; keyboard and mouse all connected at the same time is important to my work. 
    In advance, I send my thanks!
    Jeannie-Marie

    I think it is the server socket which controls the number of client sockets to be opened. The number of connections that are accepted by the server socket is called the backlog of server socket. By default its value is 50. (See java.net.ServerSocket class in java docs)...
    we can specify the backlog in the constructor of server socket...
    ~pacific

  • External hard drive not working in USB multi-port adapter

    Hi,
    I was wondering if anyone had a suggestion...I got a new My Passport Essential portable external hard-drive. I have a Belkin multi (4) USB adapter and when I plug the hard-drive in, it won't recognize it. It only works if I directly plug it into one of the two USB ports on my computer. Does anyone know of a USB multi-port adapter that would have sufficient power for me to plug my hard-drive into it? The cord is too big and bulky to plug it into my other USB port on my laptop with the adapter in place, so I either have to get another adapter or try another external hard-drive.
    thank you! Robin DySard

    Hi UKPOL,
    Please refer to this How to Geek article.
    Win 8.1 no longer supports a graphical interface for backing up files or creating system images. You must use powershell or Win 8.1's reset/refresh options.
    You can also create custom refresh images. Please see this article. The instructions also work with Win 8.1.
    You would have to use third party backup software for backing up files and folders.
    Jaco
    ****I am not an HP employee****
    Please give a" Kudos" if advice received is relevant or" Accept as Solution" if your problem has been solved.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++
    H8 1380t CTO, Intel i7 3820
    16 GB DDR3
    Pegatron Motherboard- IPIWB-PB (Pittsburgh), Radeon HD 7570 1GB. Win 7 Home Premium upgraded to Windows 8.1 Pro.
    Envy Phoenix 810-150se, Intel i7 4820k
    12 GB DDR3
    Pittsburgh2 Mainboard, NVIDIA GTX 645- 2GB GDDR5. Win 8.1 Pro.
    HP 560z CTO AMD Phenom II X6 1090T
    16 GB DDR3.
    Radeon HD 6570
    Win 7 Home Premium upgraded to Win 7 Pro.
    HP ENVY 17t-j000 CTO Quad Edition Notebook. I7 4702mq
    12 GB DDR3
    Nvidia Graphics
    Win 8 Pro
    Errare humanum est.

  • How to display the username and current date in OAF  page Footer region

    Hi,
    I need to display the username and Current-Date in footer region.If anybody knows the procedure then please share with me.
    Thanks
    Divya Agarwal

    Hi,
    Read this Thread:--
    You have to capture the UserName and Date in the Process Request Method of page Controller and invoke a method which will subsequently get and set the value in some attribute.
    String userName = pageContext.getUserName();
    How to populate Current Date and Time in OAF page through CO
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Unable to display the Content of a data file from within another data file in Oracle webcenter portal.

    We have a Content Presenter taskflow. This task flow is added to a jspx page. The taskflow fetches the content from the contributor data file. The contributor data file is having a WYSIWYG editor. The content of the WYSIWYG editor is being displayed correctly through the task flow.
    We have some links in the WYSIWYG editor. These links again point to some data files. When we click on these links from within the portal, then we are getting a blank page(the url of this blank page is: http://localhost:7101/eWSIBPortal/faces/oracle/webcenter/sitestructure/render.jspx?datasource=UCM%23dDocName%3AWSIB_ARTICLE) and not displaying the content of the data file that we are pointing to from the WYSIWYG editor.
    We want to display the content of these data files(which we have pointed from WYSIWYG editor) in-line within the portal.
    Please help us to resolve this issue and let us know if any information is required from our end.

    Thanks for reply. However, can I use XSQL to dump the formated text to a file? or just can display to client through web browsers?

Maybe you are looking for