How do switch you between 2 numeric values using a Boolean switch?

Hello

I'm a newbie to labview, so it is perhaps easy to answer.

I would like to perform a calculation which, according to the test unit, will require a different numeric value to use in the Calc.

I tried to use a Boolean switch to choose which constant must be used during runtime mode as well for example or 0.01 or 0.02 will be selected. The idea is to labview so insert the constant selected in the calculation and spit out the answer.

There is only one output on the Boolean toggle switch and not of entry so that I can't work out how to do it. If there were 2 inputs and 1 output it would do the job.

Thank you

Andy

Try the joint.  I have provided two methods.

Tags: NI Software

Similar Questions

  • How do you get the numeric value of an image

    How do you get the numeric value of an image

    This in a small example

    var Red = ' \u00FF\u00D8\u00FF\u00E1\x05oExif\x00\x00MM\ '.



    Here is a link to a script open source that generates a string that represents the data of a file binary, especially useful to integrate a small image in a script or file patterns in a JSON structure, for example:

    Get the data from binary string

    HTH,

    Domestic-

  • SQL: How to tell the difference between the numerical value and Alpha numeric

    Pls check the following requirements and let me know how to prepare the SQL:

    1. I want to find the product that begins with Alpha value separately

    2. I want to find the product that starts with the numerical value separately

    data are the following:
    CREATE TABLE prod
        (product_code                   VARCHAR2(4) NOT NULL)
    INSERT INTO prod
    VALUES
    ('L016')
    /
    INSERT INTO prod
    VALUES
    ('A035')
    /
    INSERT INTO prod
    VALUES
    ('B001')
    /
    INSERT INTO prod
    VALUES
    ('1717')
    /
    INSERT INTO prod
    VALUES
    ('7151')
    /
    INSERT INTO prod
    VALUES
    ('7019')
    /
    INSERT INTO prod
    VALUES
    ('0729')
    /
    INSERT INTO prod
    VALUES
    ('0730')
    /
    INSERT INTO prod
    VALUES
    ('L007')
    /
    INSERT INTO prod
    VALUES
    ('C013')
    /
    INSERT INTO prod
    VALUES
    ('D008')
    /
    INSERT INTO prod
    VALUES
    ('L021')
    /
    INSERT INTO prod
    VALUES
    ('0710')
    /
    INSERT INTO prod
    VALUES
    ('0718')
    /
    INSERT INTO prod
    VALUES
    ('L005')
    /
    INSERT INTO prod
    VALUES
    ('0716')
    /
    INSERT INTO prod
    VALUES
    ('0711')
    /
    INSERT INTO prod
    VALUES
    ('0701')
    /
    INSERT INTO prod
    VALUES
    ('0724')
    /
    INSERT INTO prod
    VALUES
    ('0728')
    /
    INSERT INTO prod
    VALUES
    ('0714')
    /
    INSERT INTO prod
    VALUES
    ('0704')
    /
    INSERT INTO prod
    VALUES
    ('7150')
    /
    INSERT INTO prod
    VALUES
    ('L024')
    /
    INSERT INTO prod
    VALUES
    ('L033')
    /
    INSERT INTO prod
    VALUES
    ('0721')
    /
    INSERT INTO prod
    VALUES
    ('0708')
    /
    INSERT INTO prod
    VALUES
    ('0723')
    /
    INSERT INTO prod
    VALUES
    ('L004')
    /
    INSERT INTO prod
    VALUES
    ('L018')
    /
    INSERT INTO prod
    VALUES
    ('0725')
    /
    INSERT INTO prod
    VALUES
    ('0719')
    /
    INSERT INTO prod
    VALUES
    ('0726')
    /
    INSERT INTO prod
    VALUES
    ('0712')
    /
    INSERT INTO prod
    VALUES
    ('0727')
    /
    INSERT INTO prod
    VALUES
    ('0703')
    /
    INSERT INTO prod
    VALUES
    ('TEST')
    /
    Kind regards

    Yamen
    1)select * from prod where translate(substr(product_code,1,1),'#0123456789','#') != '#'
    
    2)select * from prod where translate(substr(product_code,1,1),'#0123456789','#') is null
    

    Ravi Kumar

  • Little change in the table and little range between 2 numeric values

    Hi all

    I am a student in Electromechanics in Belgium and I do a simulation of an explosion with 48 leds for my final project.

    In the attachment, you can see the program that I have already written. I think that this can be done more easily, but I don't know how.

    I cut out 48 leds in 2 tables, with each table 24 LED.

    If you see the program you will understand actually the best way to do this is to shift bits, but I don't think it can be done in LabVIEW?

    But, the program works, so this isn't the real problem.

    Now, I have to add a new function to the program, which allows you to add a range of leds.

    So if you want to test 10 led 18 led, you can choose the "from... to..." menu and complete the range of leds.

    Also, if you want to send a linear explosion with a fork, it must be possible to leave the early explosion to run 10 and end on 18.

    I thought to do a function like this:

    1111 1111 1111 1110 0000 0000 (10)

    0000 0011 1111 1111 1111 1111 (18 reverse)

    0000 0011 1111 1110 0000 0000 (the LED range I want)

    but I do not know how...

    Can someone please help me with this, it's keep me busy for days

    I don't ask you to do the program for me, because I know it's complicated, but some advise to help me further with this.

    Thank you!

    I forgot the attachment

  • How could I add together the numerical values in the dynamic text boxes?

    I do an application and I currently have sections such as travel, rent, etc., where you can press one of two buttons to increase or decrease the total number (fresh) for this article. All totals are displayed in the dynamic text boxes - here is an example of the code for a section-

    var FoodAndDrink:Number = 0;

    button1_btn.addEventListener (MouseEvent.MOUSE_DOWN, Add);

    function Add(e:MouseEvent):void {}

    Repasetboissons += 1;

    trace (FoodAndDrink);

    FoodAndDrink_txt.text = "£" + FoodAndDrink;

    }

    button2_btn.addEventListener (MouseEvent.MOUSE_DOWN, subtraction);

    function Subtract(e:MouseEvent):void {}

    Repasetboissons-= 1;

    If (repasetboissons < 0) {}

    Repasetboissons = 0;

    }

    trace (FoodAndDrink);

    FoodAndDrink_txt.text = "£" + FoodAndDrink;

    Does anyone know how I would go all add up all the sections so that the total is in a box and changes based on the total entered in each section?

    Thank you

    then use:

    import flash.events.MouseEvent;

    var FoodAndDrink:Number = 0;

    button1_btn.addEventListener (MouseEvent.MOUSE_DOWN, Add);

    function Add(e:MouseEvent):void {}

    Repasetboissons += 1;

    trace (FoodAndDrink);

    FoodAndDrink_txt.text = "£" + FoodAndDrink;

    addAllF();

    }

    button2_btn.addEventListener (MouseEvent.MOUSE_DOWN, subtraction);

    function Subtract(e:MouseEvent):void {}

    Repasetboissons-= 1;

    If (repasetboissons< 0)="">

    Repasetboissons = 0;

    }

    trace (FoodAndDrink);

    FoodAndDrink_txt.text = "£" + FoodAndDrink;

    addAllF();

    }

    var/entertainment: Number = 0;

    button3_btn.addEventListener (MouseEvent.MOUSE_DOWN, Add1);

    function Add1(e:MouseEvent):void {}

    Entertainment += 1;

    trace (Entertainment);

    Entertainment_txt. Text = "£" + Entertainment;

    addAllF();

    }

    button4_btn.addEventListener (MouseEvent.MOUSE_DOWN, Subtract1);

    function Subtract1(e:MouseEvent):void {}

    Entertainment-= 1;

    If (Entertainment< 0)="">

    Entertainment = 0;

    }

    trace (Entertainment);

    Entertainment_txt. Text = "£" + Entertainment;

    addAllF();

    }

    Hotels var: Number = 0;

    button5_btn.addEventListener (MouseEvent.MOUSE_DOWN, Add2);

    function Add2(e:MouseEvent):void {}

    Accommodation += 1;

    trace (Accommodation);

    Accommodation_txt. Text = "£" + accommodation;

    addAllF();

    }

    button6_btn.addEventListener (MouseEvent.MOUSE_DOWN, Subtract2);

    function Subtract2(e:MouseEvent):void {}

    Accommodation-= 1;

    If (accommodation< 0)="">

    Accommodation = 0;

    }

    trace (Accommodation);

    Accommodation_txt. Text = "£" + accommodation;

    addAllF();

    }

    var travel: Number = 0;

    button7_btn.addEventListener (MouseEvent.MOUSE_DOWN, Add3);

    function Add3(e:MouseEvent):void {}

    Travel += 1;

    trace (Travel);

    Travel_txt. Text = "£" + Travel;

    addAllF();

    }

    button8_btn.addEventListener (MouseEvent.MOUSE_DOWN, Subtract3);

    function Subtract3(e:MouseEvent):void {}

    Travel-= 1;

    If (trip< 0)="">

    Travel = 0;

    }

    trace (Travel);

    Travel_txt. Text = "£" + Travel;

    addAllF();

    }

    var bills: Number = 0;

    button9_btn.addEventListener (MouseEvent.MOUSE_DOWN, Add4);

    function Add4(e:MouseEvent):void {}

    Draft law += 1;

    trace (Bills);

    Bills_txt. Text = "£" + Bills.

    addAllF();

    }

    button10_btn.addEventListener (MouseEvent.MOUSE_DOWN, Subtract4);

    function Subtract4(e:MouseEvent):void {}

    Projects of law-= 1;

    If (bills< 0)="">

    Projects of law = 0;

    }

    trace (Bills);

    Bills_txt. Text = "£" + Bills.

    addAllF();

    }

    function addAllF (): void {}

    total_txt. Text = 'pound sign' +(FoodAndDrink+Bills+Travel+Accommodation+Entertainment);

    }

  • How to configure NTP between Virtual Machines without using Vsphere Client

    I have a group of 8 virtual servers of 5.5 ESXi without an Internet connection. There are virtual machines on each of these 8 virtual servers.

    I did one of these 5.5 virtual ESXi host a NTP server by editing the file /etc/ntp.conf with below configuration and

    started the ntpd daemon. He began to take the time to its local clock, here's the output of ntpq Pei

    IP server 10.108.190.14

    ip address of the client 10.108.190.15

    Server /etc/ntp.conf

    > > driftfile/var/lib/ntp/drift

    > > server 127.127.1.0 maxpoll 4

    > > fondant 127.127.1.0 stratum 10

    | ntpq Pei

    |   refid distance st t when poll reach delay offset jitter

    | ==============================================================
    | * LOCAL (0). LIUX. 10 l 2 64 377 0.000 0.000 0.001

    Then I edited the file /etc/ntp.conf on customers with below configuration but the customer would not synchronize with the server. He

    wouldn t get response from the server. Here is the output of ntpq Pei

    Customer /etc/ntp.conf

    > > driftfile/var/lib/ntp/drift

    > > server 10.108.190.14 iburst

    | ntpq Pei

    |      refid distance st t when poll reach delay offset jitter

    | ==================================================================
    | 10.108.190.14 INIT. 16 u

    Now, when I configure NPT Client/Server on virtual machines through the Configuration Option under Option Configuration time

    in Vsphere Client everything works fine and the client and the server to synchronize with each other. I checked the file /etc/ntp.conf on both the client

    and the server and it has a couple of restrict 127.0.0.1 and restrict the lines added by default kod nomodify etc.

    So why NPT Server featured when enabled via Vsphere Client works very well, but it does not work when it is configured manually

    in the virtual servers directly.

    I was connected to a vCenter Server Appliance through the VSphere Client and enabled the synchronization of time of the NPT.

    I really need to know how to configure the NTP server without using the Vsphere Client so that I can automate the

    task by writing a python script that would connect to each virtual server and NTP Client/Server configuration.

    Any help in this issue deeply appreciated!

    Thank you!

    You can configure the ntp server without using viclient.

    Take a look @ http://kb.vmware.com/selfservice/documentLinkInt.do?micrositeID=&popup=true&languageId=&externalID=1003063

    Hope this helps

    -Assane

  • How do customize you your e-mail signature using windows live mail

    I'm options\signatures, but I can only type in the basic text.  I tried to make a word in the document and bring it from the button of the file, but will not import it.

    Thank you for visiting the Microsoft answers community site.

    The question you have posted is related to Windows Live Mail and would be better suited in the Windows Live Solution Center.

    Please visit the link below to find a community that will support what ask you:

    http://windowslivehelp.com/forums.aspx?ProductID=15

  • How to turn a list of input values by clicking on a button

    Hi Experts,
    I had 2 components on my page, an InputComboBoxListOfValues and the other is a command button. How can I activate the InputComboBoxListOfValues (which is disabled) clicking the command button.

    Thank you
    Gopi

    You create a bean that holds a Boolean value. This value represents the disabled state from your list box.
    In the property inspector of the list box, you set the disabled property to use as a Boolean value in your beans, you must also set the button as a partial trigger for your list box.
    Now, you can replace the button and in the property inspector, you can create an action or a listener of the action of this button. In this action or action listener you just change the value of the Boolean value to your desired one.

  • I want to create a 2 cells in demand for numbers, the 1st cell is a dropdown menu with items of text, when choosing an item, that it would be represented by a numeric value in the other cell. How can I do?

    I want to create a 2 cells in demand for numbers, the 1st cell is a dropdown menu with items of text, when choosing an item, that it would be represented by a numeric value in the other cell. How can I do?

    You can use vlookup() like this:

    (1) crate a table like this:

    the first line is a heading row

    the first column contains the same list of items in the context menu

    the second column contains the corresponding values

    name of the table 'value '.

    In another table (where the pop-up menu), you can use the table of choice of 'Value' like this:

    create a drop-down list in cell B1

    Select cell C1 and type (or copy and paste) the formula:

    = VLOOKUP (B1, Value::A:B, 2, 0)

    short hand for this is:

    C1 = VLOOKUP (B1, Value::A:B, 2, 0)

    now change the pop-up to display the value in the change of cell C1

  • How to connect the value of the input string to numeric values

    Hello

    I'm trying to figure out how to connect the value of unique user input string to numeric values. Basically I want the user to enter the name of a gas that I have a list for (I think I put the list of gases in a table >). Then I want to match numeric values 2 'a' and 'b', according to which gas, name of the user has set. These 'a' and 'b' values will be automatically matched with the name of the gas in a list that I put. For example, hydrogen gas has the value 3 for "a" and 4 for "b. when the user puts the ' hydrogen' name in a string constant, automatically 'a' and 'b' must be issued.» I have connect a and b to a formula

    Thanks for any help

    Hello

    It is perhaps not exactly what you are looking for, but perhaps you could use the enumerated data type and the array of clusters of points (a, b).

    Look at the VI I enclose.

  • Switching between 2 string values

    It is probably a trivial question, but how to move between 2 string values to send to an entry of a larger chain of concatonated function. The values need to be changed every 100ms or so.

    Thank you

    mhaque

    You're right, it is trivial.

    Best regards

    Balze

    P.S.: Attachment VI LV2009

  • How to switch between two keyboards (Japanese keyboards have the double function of "direct entry"

    I have a laptop with keys 'English' and 'Japanese' on the same key board.  For example "A" key is also 'CHI' in Japanese, 'B' is also "KO" in Japanese.  How to switch between the two.  It changes itself.  This seems to happen after the mail in Hotmail changed in Outlook.

    Thank you

    Tomoko

    Hello

    Please go to the Microsoft Community Forums.

    From the description of the question, we understand that you want to switch between two keyboards entries.

    Let me go ahead and help you with the issue.

    Here are some steps you can follow to resolve the problem:

    Step 1:

    To change the default language, follow these steps:

    a. Click Start and then click Control Panel.
    b. double-click regional and Language Options.
    c. click on the languages tab, click details and then click Add.
    d. under input language, add the language that you want to use.
    e. under Configuration keyboard/IME, click the keyboard layout that you want, and then click OK.
    Note: Only users who have permissions on the local computer can configure the following options on the languages tab in the regional and Language Options.

    Step 2:

    To resolve this problem, change the hot key settings in your computer system. To do this, follow these steps:

    a. right click on the language bar and then click settings.
    b. in the Text Services and input languages window, click the Advanced Settings button select an action and then click Change Key Sequence.
    c. set keys and then save the settings.

    Hope that answers your query. You can write back to us for other queries/problems related to windows and we will be happy to help you further.

  • How to switch manually between 7690 Radeon and Intel HD3000 on Envy 15 - 3001TX?

    Someone let me know "How to switch manually between 7690 Radeon and Intel HD3000 on Envy 15 - 3001TX?" as there no viable just as switching button does VAIO...

    Thank you

    Hello

    Please check this:

    http://h20000.www2.HP.com/bizsupport/TechSupport/document.jsp?lang=en&cc=us&ObjectID=c02731962&JumpID=reg_R1002_USEN

    Kind regards.

  • How to check if a numeric value is around or not?

    Hello

    A form in LiveCycle Designer ES4, how to check (at the exit of field), if a numeric value is around or not?

    Hello

    You can verify if the rawValue contains a ', 'or'. ' using indexOf

    like the following

    If (NumericField1.rawValue.toString (.indexOf(","))! = - 1 |) NumericField1.rawValue.toString (.indexOf("."))! = -1) {}

    This is not an integer

    }

    Hope this will help you

  • REGEXP_REPLACE - Exclude ONLY zeros if there is between a character and numeric value [1-9]

    Hi all

    I need your help in providing me the regular expression to exclude zeros only if it sits between the characters and a nonzero numerical value.

    For example:

    PL032 = > PL32

    GDP500 = > GDP500 (should remain is that the zeros are not between a character and not null)

    SOA008 = > SOA8

    GDP000 = > GDP0 (only exception: If that's all the 000 and then convert it 0)

    Thank you for your help in advance.

    Kind regards

    Emeline

    Hi, emeline,

    1000877 wrote:

    Hi all

    I need your help in providing me the regular expression to exclude zeros only if it sits between the characters and a nonzero numerical value.

    For example:

    -ONLINE PL32 PL032

    GDP500-online GDP500 (expected to remain is that the zeros are not between a character and not null)

    SOA008-ONLINE SOA8

    GDP000 => GDP0 (only exception: If that's all the 000 and then convert it 0)

    Are characters.  When you say "between characters and numeric value", do you mean "between non-numeric characters and numeric characters?

    If so:

    REGEXP_REPLACE (str,

    '(\D)0+(\d)'

    , « \1\2 »

    )

    \D (with a capital D) means any non-digit character.

    \d (with a small d) means any numeric characters, including 0.  Because regular expressions are greedy by default, "0 + 'match all ' 0' if some other number follows, but leave the last '0' (as you want) then there is not another number immediately after him."

Maybe you are looking for