First HP: how to enter a number complex, using single quotes

Hello

This is probably a stupid question, but how do you enter a charager apostrophe on the first HP RPN mode?

I read the section in the guide of the user on enteringer a complex numbers in RPN mode.    Using (3.4) works fine, but I'm curious to know how to enter using the method indicated in the doc:

"In RPN mode, complex numbers must be in single quotes and require an explicit multiplication.
For example, 3-2 * i'. "

For the life of me, I can't find the character of simple-qoute.     Maj 9' does not work.

It's late and without a doubt, it is right in front of me, but I can't.   I feel a "time da come...» »

Thanks in advance,

OK, found it...      (Maj)

(I cheated and google it)

Tags: HP Tablets

Similar Questions

  • HP FIRST: How to enter a number complex within a program

    In a program (with the 3 31 Rev6031 emulator), I want to work with complex numbers.

    So I write these lines to INPUT 2:

    First test

    INPUT (Z1);

    test 2D

    INPUT({{Z2,[3]}});

    ... Check: No error in the program!

    BUT I can not enter for example this: 3 + 2 * i or this: (3,2)? I always get an error.

    who can help me?

    The only entrance to work is for example: 3 > 90 ° (write >, I mean SHIFT + x of course!)

    Finally, with the 6940 firmware, I write:

    LOCAL Z1: = 3 + 2 * i;

    INPUT (Z1);

    Z1: = EVAL (Z1);

    Simple is beautiful: Z1 is now a complex.

  • How to retrieve the values of character without using single quotes

    Hi all

    How to retrieve the values of character without the use of single quotes. Its Possible in Oracle SQL

    Please answer me...

    For example

    Is actual query-> Select * from employees where name like in("SCOTT", "JAMES", "ALBERT",...);

    I want to--> Select * from employees where name like(SCOTT, JAMES, ALBERT...); -without the use of single quotes.

    Why I need this application, I need to retrieve the records more than 200 employees in a select statement by using name in where clause.

    shagarmahabubjan wrote:

    Hi all

    How to retrieve the values of character without the use of single quotes. Its Possible in Oracle SQL

    Please answer me...

    For example

    Actual query is---> Select * from employees where name like in("SCOTT", "JAMES", "ALBERT",...);

    I want to---> Select * from employees where name like(SCOTT, JAMES, ALBERT...); -without the use of single quotes.

    Why I need this application, I need to retrieve the records more than 200 employees in a select statement by using name in where clause.

    In short... you can't.  The channels are channels, and SQL and PL languages dictate that the string literals are provided within single quotes.

    I don't see how trying to retrieve more than 200 records of employees in the select statement means that you must get rid of the quotes.

    Be clear in what you ask: Re: 2. How can I ask a question on the forums?

    and take note of the FAQ link davidp provided the solution "variable IN the list.

  • How to enter serial number

    I use Adobe Download Wizard and download first Elemente 12 and have buy and have a serial number will be ready this working all right, I could not at the sight of WWW.adobe.com/go/ols_www_login who sent me my you

    [email protected] wrote:

    I could not in view of WWW.adobe.com/go/ols_www_login

    I don't know what that means.

    You must enter the serial number in your installed software, i.e., first 12 items.

  • How do to concatenate the strings having single quote and ampersand

    Hi all

    I have a task to concatenate two columns under SID - SNAME.

    Input parameter is: sid. We can pass multiple parameters: sid

    CREATE TABLE TABLE1 (NUMBER SID, SNAME VARCHAR2 (100));

    Insert into TABLE1 (SID, SNAME) values (1, 'SURF UP');

    Insert into TABLE1 (SID, SNAME) values (2, 'GNLV STYLE & KEY');

    Insert into TABLE1 (SID, SNAME) values (3, 'ESSENTIALS NORTH & SOUTH');

    Insert into TABLE1 (SID, SNAME) values (4, "Of Ora");

    Select * from TABLE1;

    SID SNAME
    1Of THE SURF's UP
    2KEY & GNLV STYLE
    3ESSENTIALS NORTH & SOUTH
    4ORA

    Expected results

    1. with the setting entry: sid in (1,2)

    Output: 1 - SURF to the TOP, 2 - GNLV STYLE & KEY

    2. with the setting entry: sid in (1,2,3,4)

    Output: 1 - SURF to the TOP, 2 - GNLV STYLE & KEY, 3 - ESSENTIALS NORTH & SOUTH, 4 - ora

    I tried to use the below query,

    Select (select RTRIM (xmlagg (xmlelement (c, sid |')))) -' || SNAME | (",")) .extract ('/ / text()'), ',')

    AS concatenated FROM table1 where «,» | : para. ',' like '%', | SID | %') as double concat;

    What I get for output is as below:

    1 SURF & apos; S upwards, 2 - GNLV STYLE & amp; TREND

    I'm not handling apstrophe and ampersand correctly.

    Can you please help me.

    Thank you

    What I get for output is as below:

    1 - SURF to the TOP, 2 - GNLV STYLE & TREND

    I'm not handling apstrophe and ampersand correctly.

    Yes. This is what happens when you use a method that is not understood.

    The answer to your question is dependent on the version and already well covered in the FAQ.

    See 'Channel aggregation' in Re: 4. How can I convert rows to columns?

    If you are on 11.2 and beyond, use LISTAGG function.

    Regarding your present attempt, since you are extracting text() nodes on an aggregate of XMLType, the result is still a valid XMLType and therefore shows the XML characters reserved in their forms with escape sequence.

    If you want to stick with the XML approach, from 11.1, is the right way to handle this situation:

    SQL> select rtrim(
      2           xmlcast(
      3             xmlagg(
      4               xmlelement(e, sid ||' - '||sname||',')
      5             )
      6             as varchar2(4000)
      7           )
      8         , ','
      9         ) as concatenated
    10  from table1
    11  where ',' || '1,2,3' || ',' like '%,'|| sid || ',%' ;
    
    CONCATENATED
    --------------------------------------------------------------------------------
    1 - SURF'S UP,2 - GNLV STYLE & KEY,3 - ESSENTIALS NORTH & SOUTH
    

    In earlier versions, use either:

    select rtrim(
             dbms_xmlgen.convert(
               extract(
                 xmlagg(
                   xmlelement(e, sid ||' - '||sname||',')
                 )
               , '//text()'
               ).getstringval()
             , 1
             )
           , ','
           ) as concatenated
    from table1
    where ',' || :para || ',' like '%,'|| sid || ',%' ;
    

    Mun

    select rtrim(
             utl_i18n.unescape_reference(
               extract(
                 xmlagg(
                   xmlelement(e, sid ||' - '||sname||',')
                 )
               , '//text()'
               ).getstringval()
             )
           , ','
           ) as concatenated
    from table1
    where ',' || :para || ',' like '%,'|| sid || ',%' ;
    
  • How can I insert values with a single quote (')

    How can I insert a values as ABC?

    Published by: LuKKa on October 6, 2010 12:48

    LuKKa says:
    I want to insert like this: -.
    INSERT INTO myTab values ("it is to belong to ABC '");

    So how do I do?

    In an old style, you can do

    insert into mytab valeus('This is belong''s to ABC''s');
    
  • How to monitor all RMAN operations using single script in the recovery catalog?

    I use the rman recovery catalog, all databases are stored on the catalog database, is there any script to monitor all the databases that are registered in the recovery catalog.

    I have the script that displays only the last time success of the work of recovery catalog

    SELECT name, Inc., Journal, ctl
    Of
    RMAN.rc_database d,
    (select db_id, to_char (max (START_TIME),' MM/DD / YYYY:HH24:MI:SS') full)
    of s rman.rc_backup_set
    where s.backup_type in (')
    and controlfile_included = 'NONE '.
    Db_id group) f.
    (select db_id, to_char (max (START_TIME),' MM/DD / YYYY:HH24:MI:SS') Inc.)
    of s rman.rc_backup_set
    where s.backup_type ('i')
    Db_id group) i.
    (select db_id, Journal of to_char (max (START_TIME),' MM/DD / YYYY:HH24:MI:SS'))
    of s rman.rc_backup_set
    where s.backup_type ('l')
    l band db_id),
    (select db_key, ctl to_char (max (completion_TIME),' MM/DD / YYYY:HH24:MI:SS'))
    of s rman.rc_backup_controlfile
    Db_key group) c
    where f.db_id (+) = d.dbid
    and i.db_id (+) = d.dbid
    and l.db_id (+) = d.dbid
    and c.db_key (+) = d.db_key
    order by 1;

    Published by: 987633 on February 12, 2013 09:03

    Real!

    Difficult to shoot everything I want in a single query.

    select
            db_name,
            start_time,
            end_time,
            status,
            time_taken_display,
            output_bytes_display,
            output_device_type,
            session_key,
            session_recid,
            session_stamp
    from rc_rman_backup_job_details where end_time > sysdate -1
    

    Best regards

    mseberg

  • How to enter the serial number before the trial period is up.

    I downloaded the trial version 11 elements Photoshop and first items 11 and decided to buy it from Amazon.  Can I use the serial numbers of the ERC enable the trial version and do not have to uninstall the trial and install it from the CD?  How to enter serial numbers before the end of the trial?

    Never mind.  You open the editor in photoshop and elements first to get the button to enter the serial number.

  • mx459 won't let me enter the WEP key number, allows only symbols and letters. How to enter numbers?

    mx459 won't let me enter the WEP key number, allows only symbols or letters. How to enter numbers?

    John

    This might help

    Press the SETUP button on the control panel of your printer.
    Using the arrows, select DEVICE SETTINGS, press OK.
    Select local network SETTINGS, then press OK.
    Select Configuration LAN wireless, and then press OK.
    If a message appears, press the WPS button, press STOP to cancel.
    Select STANDARD INSTALLATION in the next screen that appears, and then press OK.
    Select your access point or router, and then press OK.
    Press OK to confirm the access point name.
    Enter your password using the numeric keypad on the right.
    On the screen where you enter your password at the top right of the LCD screen, you should see a: 1. This indicates you are in digital input mode. If you press the asterisk (*) will be fixed: has or uppercase mode, pressing asterisk with tiny switch. To enter a letter in letter mode, you press the digital key to scroll through the available letters. For example: to enter a letter 'c', you press the '2' three times.
    Press OK when finished.
    The LCD will say "Connected", if the password is correct.

  • How to enter my serial number to download photoshop elements on a mac 11

    My mac is not a port of DVD. So how to enter the serial number on the box to download and install photoshop elements 11.

    you do not use your serial number to download, just install it.

    Available downloadable Setup files:

    Download and installation help links Adobe

    Help download and installation to Prodesigntools links can be found on the most linked pages.  They are essential; especially steps 1, 2 and 3.  If you click on a link that does not have these listed steps, open a second window by using the link to Lightroom 3 to see these "important Instructions".

  • I used the trial version, ordered and installed before exhaling a version for teachers, unable to launch PS without serial number first. How tho do now?

    I used the trial version, ordered and installed before exhaling a version for teachers, unable to launch PS without serial number first. How tho do now?

    well, I try!

  • Enter the number on AIR for Android. How do I?

    Hello

    I have TLF text editable with the name of sID. How can I add the event handler to display the tab number on Android & make the user enter a number...? !

    Kind regards

    In fact, you should avoid TLF on mobile for performance reasons.

    Take a look at StageText (http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/StageText.ht ml). Here is the Nice intro to use it: http://blogs.adobe.com/cantrell/archives/2011/09/native-text-input-with-stagetext.html

    Chris Griffith

  • How to enter your serial number?

    I'm at a University and I have a serial number to enter if I can use photoshop for a few months, I don't know where to go to enter this code?

    Hello

    You have the redemption code to opt for creative cloud subscription?

    Please go through the help documents that can help you-

    Redemption code help

    Numbers of students and teachers edition series, redemption codes and product codes

    Hope this will help.

    Let us know if it will work.

  • BlackBerry smartphones enter "My number" 8110

    Hi people, first post so here.

    When I'm in the call log, the top of the screen States: ' My Number: Unknown Number "-anyone know how to update this and enter the number or allow the handset to find? -I know I could just hide that part but this sort of thing bothers me!

    I hope someone can help - thanks.

    Options > Advanced Options > SIM card.

    In this screen, press Menu and change the SIM phone number.

    Record.

  • BlackBerry smartphone how to enter my PIN code?

    I just changed on my brand new 9000 "BOLD". The first thing I'm being prompted to enter is to enter my PIN code in 3 tests. I have 2 left.

    I guess that's the PIN that came with the BB and not the SIM card pin, right? (1)

    I'm new to BB and unfamiliar with the keyboard. My main concern is to know how to switch between letters and numbers? (2)

    There is a '123' in the upper right corner of the screen, which I think shows the num lock mode. According to the "Getting Started Guide" by pressing the 'alt' should turn on lock num - but not on my BB mode, at least not not before entering the PIN code.

    How can I get the unit off NumLock mode? (3)

    .. and when I get out of lock mode number, which must be pressed to enter a number, the 'alt' or the 'sym '? (4)

    Press the 'alt' or 'sym' must be held down while pressing the number key or does it just to push first? (5)

    Thanx, Jesper

    Hey. Thanks for the reply.

    I understand it now, but I got a SIM card locked in the process :-)

    First, it was of course the SIM card pin code and not the BB pin code which is asked to enter. The misfortune is that you can't control your device at all until you enter the right pin only 3 attempts. This means that you need to understand how the use of the aerodrome of keys works on this neverseen before keyboard the first time you use it. There is no help, and you don't see what you write, because it is simply displayed as *. In addition to that, you sit down with this new cool device and you're really impatient. It took me 10 minutes to lock the card!

    5 minutes later with another sim card, I learned that I had to just press the [sym] open a graphics pad with which easily enter you the digital PIN using the trackball.

    I wish that this was mentioned in the "Start Guide".

    Cheers, Jesper

Maybe you are looking for

  • Card Pay Apple needs to audit

    Now, I had my checked by phone three times by my financial institution debit card.  Whenever I have restore my phone or in this case, I had the iPhone 7 and its saying my card needs to be retested.  This is in addition to needing another check when I

  • Are Belgian iPhones THAT SIM locked?

    Are iPhones in Belgium SIM-locked, or can I use them with different Belgian suppliers? THX

  • Graphics update and RAM...

    Hi there everyone, I have an iMac late 2014 5 k with 8 GB of Ram and the graphics radeon with 2 GB of vram card. I know I can get the Ram to 16 GB or 32 GB, but where can I buy this from? Is it possible to move to the graphics card of 4 GB Radeon whi

  • Scripting: Can drop us a control of the money?

    It is possible to drop a new money controls uses VI Scripting? The ID of the Style of a classic Cluster is 3400 and a modern Cluster is 21607, but when I read the property ID of Style of a cluster of disengaged manually money I see 21607. I also try

  • PXI-6509 necessary connection block

    Hello It s necessary to work this pxi-6509 is attached to the connection (i.e. SCB-100) via the cable block; or can be directly connected to the cable (i.e. HS-100-100-F)? Thank you