Controlling numerical precision on lineChart axis

Hi folks -
A simple thing I cannot seem to get to happen. I have an application that plots two numerical axes in a lineChart. I need to control the displayed precision of the values on the axes; ie if the value is floating point, for instance, I only want to display two decimal places as in '%2.2f' if this were C or some such. I can't seem to figure out how to do this in JavaFX (I am using 2.2). I saw the 'setTickLabelFormatter' but I do not understand how to use it. It wants an instance of a 'stringConverter' and I don't understand how to use that. can anyone give me a detailed example of how to use setTicklabelFormatter to set, say, 2.2f precision?
thank you.

Something like this should work:
        yAxis.setTickLabelFormatter(new StringConverter<Number>() {
               @Override
               public Number fromString(String string) {
                    return Double.parseDouble(string);
               @Override
               public String toString(Number value) {
                    return String.format("%2.2f", value.doubleValue());
        });

Similar Messages

  • Numeric Precision Error

    Hi,
    I am using ODP 10.2.0.2.21 with c# and .Net 2.0 and Oracle 10g.
    Most of my stored procedures output the results back to the caller in the form of a generic REF CURSOR. When I call OracleDataAdapter.Fill to populate a data-set using a call to one of these stored procedures, it works fine as long as the stored procedure returns data. If no rows are returned, I get the following error:
    [Oracle.DataAccess.Types.OracleTypeException]: numeric precision specifier is out of range (1 to 38).
    Looking up this error, I've found that it normally occurs as a result of an attempt to run some DDL SQL that creates a table with a numeric column whose precision exceeds the maximum allowable e.g. numeric(39). This is not the case here, as the stored procedures that are failing are mostly pure select statements and do not even utilise temporary tables or bulk collection. It is almost as if the OracleDataAdapter is unable to get the schema representation of the column when there is not at least one row of data.
    I have pasted the full exception stack below:
    at Oracle.DataAccess.Types.OracleDecimal.ConvertToPrecScale(OracleDecimal value1, Int32 precision, Int32 scale)
    at Oracle.DataAccess.Client.OracleParameter.PreBind_Decimal()
    at Oracle.DataAccess.Client.OracleParameter.PreBind(OracleConnection conn, IntPtr errCtx, Int32 arraySize)
    at Oracle.DataAccess.Client.OracleCommand.ExecuteReader(Boolean requery, Boolean fillRequest, CommandBehavior behavior)
    at Oracle.DataAccess.Client.OracleDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
    at System.Data.Common.DbDataAdapter.Fill(DataSet dataSet)
    Any help on this would be appreciated.
    Regards
    Roy Griffiths.

    Hi Mark,
    It would be difficult to distill this down to a small enough example to post, but I could email you an example if you want.
    I have done a bit more investigation however, and believe that I have found the cause of the problem.
    My application obtains the parameters for any stored procedure that it calls using OracleCommandBuilder.DeriveParameters. As this is an expensive call (it requires a round trip to the database), I cache the output when a stored procedure is called for the first time. Specifically, I store a number of properties for each stored procedure parameter, including its precision and scale. I then use the cached properties to build the parameters collection on the command object when the stored procedure is called.
    I've noticed that the OracleParameter.Precision and OracleParameter.Scale properties always return zero, regardless of the definition of the parameter on the stored procedure. I've also noticed that there are 2 private member variables (m_precision and m_scale) that contain non-zero values. If I use reflection to obtain and cache these values and use them to set the scale and precision of Command.Parameters[n] then the problem goes away.
    I'm not particularly keen on this as a solution however, and would much rather use the public properties for precision and scale (OracleParameter.Precision and OracleParameter.Scale). Do you have any idea why they don't return values?
    Regards
    Roy.

  • Why can't I reset the precision of my axis in a Waveform graph?

    I'd like to reset the precision of the axis on my Waveform Graph.  I can do this in other graphs but when I change it to a Waveform it doesn't like it.  Perhaps this is because time is on the x-axis?
    Anyway it comes up with the error, Invalid Property Value when I run this test VI. 
    Attachments:
    GraphPrecisionError.vi ‏55 KB

    I have reported this in the bug thread: http://forums.ni.com/ni/board/message?board.id=BreakPoint&message.id=3331#M3331
    LabVIEW Champion . Do more with less code and in less time .

  • ORA-01727 during impdp transportable datafiles:numeric precision specifier

    I started impdp the rman converted the datafiles into tartget and got error on one of the table:
    ORA-01727: numeric precision specifier is out of range 1 to 38
    I tried to fix it by create the table definition by change several columns number (126) to number (38), it worked, and then I tried to impdp again with tables=tablename
    content=data_only, it give me error that the imp dump file is specific for transportable tablespace.
    I dont know how to fix this issue. Can anybody help on this?
    Thanks in advance.

    Here is the error after I created the table and then trying to import the data:
    impdp system/password dumpfile=dp_tts.dmp table_exists_action=APPEND tables=asset.customer_ticket content=data_only;
    Import: Release 11.2.0.3.0 - Production on Mon May 6 01:01:41 2013
    Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    ORA-39002: invalid operation
    ORA-39061: import mode TABLE conflicts with export mode TRANSPORTABLE

  • ORA-30352: inconsistent numeric precision or string length

    Trying to create a materialized view and am getting this error.
    ORA-30352: inconsistent numeric precision or string length
    How do I fix this?

    Mix and matching of types with my facts and dimensions. Making them the same resolved this.
    Edited by: user7853353 on Jun 18, 2012 5:33 PM

  • Demonstrating numerical precision

    I'm running a workshop teaching high school students to use Labview.  For a lot of these kids, this will be the first time they use the program.  One of my favorite programming topics is understanding numerical precision and how important it is to a computer (signed vs. unsigned, integer vs. floating, 8-bit vs. 64-bit, etc).
    I'm trying to come up with some simple demonstrations in Labview to drive the point home.  Ideally, I'd assign an seemingly simple math problem to solve.  Maybe something they could do fairly easily in their head or on a calculator.  But when they program it in Labview, it comes up with a completely wrong answer because they didn't properly account for precision.
    For example, starting with a U8 integer equal to 1.  Double the number eight times in a loop.  If I ask them to predict the answer, they'll probably say "256".  But, of course, the program will come back with "0" which will force them to think why and figure it out.
    I'd welcome any clever suggestions to throw at the kids.  Nothing too complicated - I want them to be able to program it themselves after a introductory lesson on using Labview.  But something that will shock them a little and help wrap their heads around the concepts.
    Thanks!

    Definately make sure they understand that floats are not exact and test for equality just doesn't work!  I'm tired of debugging those kind of errors.  Rollover errrors is the other really common numerical error I see.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • - ORA-01727: numeric precision specifier is out of range (1 to 38)

    What is cause of above error??
    SQL> SELECT DBMS_SQLTUNE.REPORT_TUNING_TASK( 'my_sql_tuning_task_1') from DUAL;
    DBMS_SQLTUNE.REPORT_TUNING_TASK('MY_SQL_TUNING_TASK_1')
    GENERAL INFORMATION SECTION
    Tuning Task Name : my_sql_tuning_task_1
    Tuning Task Owner : SYS
    Workload Type : Single SQL Statement
    Scope : COMPREHENSIVE
    Time Limit(seconds): 3600
    Completion Status : COMPLETED
    Started at : 09/27/2012 13:24:45
    Completed at : 09/27/2012 13:24:45
    Schema Name: PDS
    SQL ID : 4wv8x1b10dvk0
    SQL Text : INSERT INTO dlg_participant
    (dp_dg_id, dp_dlg_id, dp_customer_id, dp_context,
    dp_inserted_timestamp, dp_moved_timestamp, dp_active,
    dp_internal_id)
    (SELECT
    cast(:1 as number(:"SYS_B_0")),
    cast(:2 as number(:"SYS_B_1")),
    mh_customer_id,
    mh_context,
    SYSDATE,
    SYSDATE,
    cast(:3 as number(:"SYS_B_2")),
    cast(:4 as number(:"SYS_B_3"))
    FROM
    (SELECT
    Relations.MARE_ID as mh_customer_id,
    :"SYS_B_4" as mh_context,
    null as mh_participant_id
    FROM
    (select *
    from Testuser.RelationsEnriched_10M
    ) Relations
    WHERE
    ((:5 >= Relations.MARE_ID))) AND
    NOT EXISTS (SELECT
    dp_id
    FROM
    dlg_participant,
    dlg_group
    WHERE
    (dp_dg_id = dg_id) AND
    (dg_dlg_id = :6) AND
    (dp_active = :7) AND
    (dp_customer_id = Relations.MARE_ID))) mh_container)
    Bind Variables :
    2 - (NUMBER):9
    4 - (NUMBER):9
    6 - (NUMBER):18
    8 - (NUMBER):18
    10 - (NUMBER):1500000
    11 - (NUMBER):1053
    12 - (NUMBER):0
    ERRORS SECTION
    - ORA-01727: numeric precision specifier is out of range (1 to 38)
    -------------------------------------------------------------------------------

    Strange as none of the number datatype is more than 38
    SQL> desc testuser.relationsenriched_10m
    Name Null? Type
    MAEX_VALUE_CODE_002 NUMBER(38)
    MAEX_PHONE_IND_DATE DATE
    MAEX_TOTAL_SWITCH_DATE DATE
    MAEX_VALUE_CODE_002_DATE DATE
    MARE_COMP_FS_PC VARCHAR2(199)
    MARE_DEALER_RETAIL VARCHAR2(7)
    MARE_CONSODATA_IND VARCHAR2(2)
    MAEX_VALUE_CODE_003 NUMBER(38)
    MARE_EXT_KEY1_NR VARCHAR2(199)
    MARE_GM_CARD_CODE VARCHAR2(199)
    MAEX_LAST_CHANGE_DATE DATE
    MAAD_MARE_ID NUMBER(38)
    MAEX_MAIL_IND_DATE DATE
    MARE_PERS_TITLE VARCHAR2(6)
    MARE_EXT_KEY3_NR VARCHAR2(199)
    MARE_BSM_DATE VARCHAR2(199)
    MARE_ID NUMBER(38)
    MARE_GM_CARD_STATUS VARCHAR2(199)
    MAAD_PREFERED_IND VARCHAR2(2)
    MAEX_SMS_IND_DATE DATE
    MARE_RELATED_CODE VARCHAR2(199)
    MARE_FAX FLOAT(126)
    MACA_MARE_ID NUMBER(38)
    MACA_REGDATE_OWNER_YEAR NUMBER(38)
    MAEX_EMAIL_IND_DATE DATE
    MAEX_MAILABLE_IND6 VARCHAR2(2)
    MARE_PERS_LAST_NAME VARCHAR2(42)
    MARE_PERS_SALUTATION VARCHAR2(9)
    MARE_PERS_FIRST_NAMES VARCHAR2(51)
    MARE_SUB_TYPE VARCHAR2(2)
    MACA_PREFERED_IND VARCHAR2(2)
    MAEX_CONTROL_GROUP_DATE DATE
    MARE_MOBILE_PHONE VARCHAR2(21)
    MARE_COMP_ID NUMBER(38)
    MARE_EXT_KEY1_CHAR VARCHAR2(16)
    MARE_FIRST_CONTACT_DATE DATE
    MARE_MOI1_DESCR VARCHAR2(21)
    MAEX_MAILABLE_IND9 VARCHAR2(2)
    MARE_MOI1 VARCHAR2(11)
    MARE_MAAD_ID_T NUMBER(38)
    MARE_COMP_SIZE_CAT NUMBER(38)
    MAEX_SMS_IND VARCHAR2(2)
    MARE_PERS_LAST_NAME_SECOND VARCHAR2(15)
    MAEX_VALUE_CODE_001_DATE DATE
    MARE_ORDER_T NUMBER(38)
    MARE_BSM_IND VARCHAR2(2)
    MACA_BRAND VARCHAR2(12)
    MACA_DEALER_RETAIL VARCHAR2(7)
    MARE_HOME_PHONE VARCHAR2(21)
    MAEX_MAIL_IND VARCHAR2(2)
    MARE_PERS_BIRTH_DATE DATE
    MARE_CNSMR_TYPE VARCHAR2(2)
    MAEX_MAILABLE_IND5 VARCHAR2(2)
    MARE_PERS_AGE NUMBER(38)
    MAEX_MAILABLE_IND1 VARCHAR2(2)
    MARE_INSRC_RNWL_DATE DATE
    MACA_NEW_USED VARCHAR2(5)
    MARE_LOAD_DATE DATE
    MARE_PERS_MAR_STATUS VARCHAR2(199)
    MARE_PERS_PREFIX VARCHAR2(7)
    MARE_COMP_SIZE NUMBER(38)
    MAEX_VALUE_CODE_100_DATE DATE
    MARE_HISTORY_FILE VARCHAR2(26)
    MARE_COMP_NAME VARCHAR2(108)
    MARE_IDX_T VARCHAR2(51)
    MARE_DEALER_RETAIL_NAME VARCHAR2(41)
    MACA_OWNER_TYPE VARCHAR2(2)
    MARE_CREATION_DATE DATE
    MARE_MACA_ID_T NUMBER(38)
    MARE_EXT_KEY3_CHAR VARCHAR2(199)
    MAAD_POSTAL_CODE VARCHAR2(8)
    MAEX_MARE_ID NUMBER(38)
    MARE_CNSMR_TYPE_CODE NUMBER(38)
    MARE_SOURCE VARCHAR2(5)
    MARE_LAST_CONTACT_DATE DATE
    MARE_EXT_KEY2_CHAR VARCHAR2(199)
    MAEX_ID NUMBER(38)
    MAEX_TOTAL_SWITCH VARCHAR2(2)
    MARE_EMAIL VARCHAR2(53)
    MARE_DEALER_SERV_NAME VARCHAR2(41)
    MARE_WORK_PHONE VARCHAR2(21)
    MAEX_VALUE_CODE_100 NUMBER(38)
    MAEX_PHONE_IND VARCHAR2(2)
    MARE_AERD VARCHAR2(199)
    MARE_SPS_FILE_ID NUMBER(38)
    MAEX_LOAD_DATE DATE
    MARE_MOI5 VARCHAR2(11)
    MAEX_MAILABLE_IND7 VARCHAR2(2)
    MAEX_VALUE_CODE_001 NUMBER(38)
    MARE_COMP_NAME_2 VARCHAR2(172)
    MARE_SOFI_NR VARCHAR2(17)
    MARE_COMP_CODE VARCHAR2(199)
    MARE_COMP_FS_CC VARCHAR2(199)
    MAEX_MAILABLE_IND4 VARCHAR2(2)
    MARE_DEALER_PREF VARCHAR2(7)
    MARE_LANG_CODE VARCHAR2(3)
    MACA_REGDATE_CAR_YEAR NUMBER(38)
    MARE_PERS_INITIALS VARCHAR2(7)
    MARE_DEAR_SALUTATION VARCHAR2(50)
    MAEX_MAILABLE_IND8 VARCHAR2(2)
    MAEX_TITLE_IND VARCHAR2(2)
    MARE_MATCHING_IDX VARCHAR2(199)
    MARE_MOI3 VARCHAR2(11)
    MARE_DEALER_PREF_NAME VARCHAR2(2)
    MARE_ENVELOPE_NAME VARCHAR2(199)
    MARE_PERS_CHILD_UNDER_18 VARCHAR2(199)
    MARE_MOI2 VARCHAR2(11)
    MARE_RELATED_DESCR VARCHAR2(199)
    MARE_EXT_KEY2_NR VARCHAR2(199)
    MARE_PERS_GENDER VARCHAR2(2)
    MACA_MODEL VARCHAR2(16)
    MARE_PERS_HH_SIZE VARCHAR2(199)
    MAEX_TITLE_IND_DATE DATE
    MARE_LAST_CHANGE_DATE DATE
    MARE_MOI4 VARCHAR2(11)
    MAEX_MAILABLE_IND2 VARCHAR2(2)
    MARE_DEALER_SERV VARCHAR2(7)
    MAEX_VALUE_CODES VARCHAR2(25)
    MARE_NAME_T VARCHAR2(51)
    MAEX_VALUE_CODE_003_DATE DATE
    MARE_PERS_HH_CARS VARCHAR2(199)
    MAEX_MAILABLE_IND3 VARCHAR2(2)
    MARE_ERD NUMBER(38)
    MAEX_CREATION_DATE DATE
    MARE_IERD VARCHAR2(199)
    MAEX_CONTROL_GROUP NUMBER(38)
    MAEX_EMAIL_IND VARCHAR2(2)
    MARE_COMP_FS_TOT VARCHAR2(199)
    MARE_RELT_ID NUMBER(38)
    MARE_PERS_ID NUMBER(38)
    SQL> desc pds.dlg_participant
    Name Null? Type
    DP_ID NOT NULL NUMBER(18)
    DP_DG_ID NOT NULL NUMBER(9)
    DP_DLG_ID NOT NULL NUMBER(9)
    DP_CUSTOMER_ID NOT NULL NUMBER(38)
    DP_CONTEXT NOT NULL NVARCHAR2(128)
    DP_INSERTED_TIMESTAMP NOT NULL DATE
    DP_MOVED_TIMESTAMP NOT NULL DATE
    DP_PART_STAMP NVARCHAR2(3)
    DP_ACTIVE NOT NULL NUMBER(18)
    DP_INTERNAL_ID NUMBER(18)
    DP_CUSTOM_VALUES NCLOB

  • Numeric Precision on Key Figures

    Numeric Precision on Key Figures
    Hi Sdn,
    What is the impact of the setting "Key Figure with Maximum Precision" on types Amount, Integer and Number? We are trying to import amounts or numbers with 9 places to the right of the decimal point. How does this setting help us, or does not?
    We are loading from a flat file. How the above impact, source flat file, staging and query design and display?
    Thanks for the help.
    Saf.

    Hi Saf,
    Did you find an answer to your question. I am facing the same problem right now.
    Could you please suggest how you did resolve the issue and the impacts...!!!
    Thanks in Advance.
    Best Regards,
    Giftedbrain.

  • How do I change the numerical format of the axis in Diadem view and report

    Is there a method for changing the format of the AXIS labels to show more significant digits? Second, I can't find how to display the menu shown in NI help document 3FIEI5LE. When I right click to (select properties) I get a different menu labeled (set proerties for display).
    Thanks,
    Doug

    Hi Doug,
    There is no way to configure the display of the X axis in VIEW-- this is for a quick look at or an interactive visual inspection of your data. For a fully configurable report creation environment you should switch to REPORT. Note that the last button on the top icon bar in VIEW with the tipstrip "Transfer to REPORT" will transfer what you currently have displayed in VIEW into a new REPORT layout.
    In REPORT if you double-click on the numbers below the X axis, a "2D - Numeric display" configuration dialog will appear which has the field "Format:" in it. Type in "d.dddd" ("d,dddd" in Europe) or as many d's after the decimal character as you want to display. There are also other formatting options for scientific display, etc.
    I honestly didn't understand your second question about the help dialog-- what version of DIAdem are you using?
    Regards,
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • Numeric precision issue on OLEDB 11 R2 on Windows 2008 R2

    Hello,
    I am trying to use Linked Server From SQL Server 2008 SP 1 on Windows Server 2008 R2 64 bit to access an Oracle database (Oracle9i Enterprise Edition Release 9.2.0.5.0).
    I have installed client 11.2.0.1.0 R2 (win64_11gR2_client.zip) despite of I don't see any oracle driver in ODBC configuration (both 32 and 64 bit - why?),
    my linked server works but with an issue:
    The numeric columns in oracle have in sql server (via linked server and openquey) a data Precision issue;
    In result my openquery cannot convert to Float, Numeric with the proper precision and scale.
    Eg.: The original oracle value is 123,88 -> In sql sever via openquery and linked server becomes 12388,00!
    Any help would be greatly appreciated!
    Thanks for your help!
    GC
    In summary:
    Oracle Server: Oracle9i Enterprise Edition Release 9.2.0.5.0
    Application/SQL DB Server: Windows Server 2008 R2, SQL Server 2008 SP 1, Oracle client 11.2.0.1.0 R2 (win64_11gR2_client.zip)
    Issue: Numeric data Precision issue (The original oracle value is 123,88 -> In sql sever via openquery and linked server becomes 12388,00!)
    Edited by: 882615 on 31-ago-2011 7.34
    Edited by: 882615 on 31-ago-2011 7.40

    SOLVED!
    1) I Uninstalled previous Oracle drivers.
    2) I downloaded the Oracle Database 10g Client Release 2 64 Bit (10.2.0.4) (10204_vista_w2k8_x64_production_client.zip) [http://www.oracle.com/technetwork/database/10204-winx64-vista-win2k8-082253.html]
    3) When the installation fails due to the version of windows I have modified the file "oraparam.ini" under the folder ..\client\install\ and i adde "6.1" at the line: "[Certified Versions]
    #You can customise error message shown for failure, provide value for CERTIFIED_VERSION_FAILURE_MESSAGE Windows=5.0,5.1,5.2,6.0"
    becomes: [...] Windows=5.0,5.1,5.2,6.0,6.1
    4) Restart setup and install: Later during the setup the Oracle Universal Installer does another check but now we can overcome the problem by ticking the boxes and check user verified (cheching operating system).
    5) Check Allow in Process box under Linked server Oracle Oledb provider;
    And that's all! It Works!!
    Bye

  • Controlling numeric slider with numeric control

    Hello,
    what i have is a numeric slider and
    a numeric control.  i would like to be able to move the slider and have
    it update the value in the numeric control and vice versa.  the problem
    is that i can update the value in the numeric control when i move the
    slider, but i can't update the slider if i try to change the value in
    the numeric control.  i was trying to use the 'value' property node for
    each of them and and wire each of the controls to the opposite property
    node.  i know they are both control but i thought if i change the
    'value' to an input then it may update.
    i have attached the vi.
    thank you
    Attachments:
    numeric_slider.vi ‏10 KB

    AdamKrzy16 wrote:
    Any help or insight would be appreciated beyond measure!
    Well, since the event structure only executes when one of the controls changes, it is blocking the loop. Dataflow in action!
    A quick solution would be to make the event structure "transparent" by adding a short and empty timeout case. Now just use a feedback node to retain the existing value if the controls did not change.
    There are probably definitely better ways to do this, but they would require more fundamental changes to your code.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    PID LabVIEW Program_slider try number 2MOD.vi ‏282 KB

  • How to control display with X-Y Axis interval

    Is there a graceful way to control the display of X, Y Axis in SVG chart with line mode?
    When more records retrieved, it is hard to read from the X axis.
    How does Axes settings work?
    Thanks,
    Daniel

    Is there a graceful way to control the display of X, Y Axis in SVG chart with line mode?
    When more records retrieved, it is hard to read from the X axis.
    How does Axes settings work?
    Thanks,
    Daniel

  • Hp 50g Calculator: controlling NUMERIC SOLVER search zone

    Hi,
    I have looked in User Guide about :"Solving equations with one unknown through NUM.SLV" (pages 6-13 and 6-14)
    In my opinion , the user guide is wrorng there:
    They resresent the number 4.5006E-2 as a solution to this  equation: exp(x)-sin(pi*x/3)=0
    x= 4.5006E-2 is NOT a solution for that equation,
    x= 4.5006E-2 is an extremum for that function (a local minimum point)
    After further reading I understand the Numerical solver will find a ZERO or EXTREMUM,
    the same is applied to the command ROOT
    (in the case of ROOT command, you cannot know if what was found is a zero or an extremum)
    I want to know please How can I narrow (or controll) the search zone of those solvers?
    in other HP calculators (like HP42S and HP32SII) you can give TWO start guesses so the search will be ONLY between those two guesses.
    Can I do the same here?
    Thank you

    Hi,
    For the form-based solver, a single initial guess close to the desired solution or two guesses between which will be searched can be provided by setting the variable to the value of the guess:
    For one initial guess:
    First set  X=-3 by entering -3 when X value is highlighted. Highlight the X value again and select SOLVE, the answer of -3.04544...  will be given. (this is explained on p6-15).
    For two guesses between which will be searched:
    First set  X= {-2 -4} by entering {-2 -4} when X value is highlighted. Highlight the X value again and select SOLVE, the answer of -3.04544...  will be given.
    Similarly, the ROOT function can either be provided with a single guess near the desired point, or two guesses between which will be searched.
    Format for ROOT with one guess:
    3:    exp(X)-sin(pi*X/3)=0      // expression
    2:                     'X'      // variable to be solved for
    1:                      -3      // initial guess close to the desired point
    Executing ROOT will then give the solution of -3.04544...
    Format for ROOT with a two-value range for the guess :
    3:    exp(X)-sin(pi*X/3)=0      // expression
    2:                     'X'      // variable to be solved for
    1:                 {-2 -4}      // initial guess range around the desired point
    Again, executing ROOT will give the solution of -3.04544...
    Note, the manual uses the word "solution" in the context of anything that is either a root, minimum or maximum. (The AUR specifically uses the terms "root or solution" when describing SOLVE, SOLVEVX or ROOT).
    Best regards.
    Note: I do not work for HP, I just like playing with calculators :-)

  • Play controls less precise now

    Since installing Snow Leopard I notice that logging clips with the jkl controls is sloppy -- e.g. when you play in slow motion by holding down k and l, then release the l key to stop, the clip continues a few more frames before stopping, making precise edit points hard to define. Annoying. Any way to combat this moving inertia?

    RockySer wrote:
    U r lucky because u have maps, half of eastern europe is not coverd yet and only because they change map provider. Now they use Navteq and if u want real answers u beter ask them. 
    Now I can't use GPS on my phone because Nokia is select bad Map provider
    Nokia didn't really change map provider, they bought them.
    Nokia Own Navteq
    If this Post is helpful. A click on the White Kudos star is always Appreciated
    Last Nokia: Nokia Lumia 800
    Current Phone: A Non Nokia Device
    Previous Phones:Don't Ask ;-)

  • Precision problems numeric(30,10) to number

    Hi,
    We are running 11g Enterprise Edition and are evaluation the Database Gateway for ODBC. The database is running on Windows 2008 R2.
    The Gateway has been successfully setup against our MS SQL Server running on Windows 2008 as well.
    Almost everything has been working perfectly (selecting from tables/views, executing stored procedures) but we have not been able to solve the case of returning numeric (precision, scale) data type back to Oracle.
    F.x. 367.700 is 367 once selected in Oracle.
    The documentation states that SQL_NUMERIC(p[,s]) should be converted to NUMBER(p[,s]) but no matter what we always get lose the scale.
    We added the parameter HS_FDS_REPORT_REAL_AS_DOUBLE = TRUE as well to the ini file.
    Any ideas?

    The definition of the column is numeric (30,10).
    We are using the Gateway with OLE DB.
    The init<sid>.ora contains.
    HS_FDS_CONNECT_INFO = DISSQLT1
    HS_FDS_TRACE_LEVEL = off
    HS_FDS_SUPPORT_STATISTICS=FALSE
    HS_FDS_REPORT_REAL_AS_DOUBLE = TRUE
    select * from NLS_DATABASE_PARAMETERS returns:
    NLS_LANGUAGE     AMERICAN
    NLS_TERRITORY     AMERICA
    NLS_CURRENCY     $
    NLS_ISO_CURRENCY     AMERICA
    NLS_NUMERIC_CHARACTERS     .,
    NLS_CHARACTERSET     WE8MSWIN1252
    NLS_CALENDAR     GREGORIAN
    NLS_DATE_FORMAT     DD-MON-RR
    NLS_DATE_LANGUAGE     AMERICAN
    NLS_SORT     BINARY
    NLS_TIME_FORMAT     HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT     DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT     HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT     DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY     $
    NLS_COMP     BINARY
    NLS_LENGTH_SEMANTICS     BYTE
    NLS_NCHAR_CONV_EXCP     FALSE
    NLS_NCHAR_CHARACTERSET     AL16UTF16
    NLS_RDBMS_VERSION     11.1.0.7.0
    select * from NLS_INSTANCE_PARAMETERS return:
    NLS_LANGUAGE     ICELANDIC
    NLS_TERRITORY     ICELAND
    NLS_SORT     (null)
    NLS_DATE_LANGUAGE     (null)
    NLS_DATE_FORMAT     (null)
    NLS_CURRENCY     (null)
    NLS_NUMERIC_CHARACTERS     (null)
    NLS_ISO_CURRENCY     (null)
    NLS_CALENDAR     (null)
    NLS_TIME_FORMAT     (null)
    NLS_TIMESTAMP_FORMAT     (null)
    NLS_TIME_TZ_FORMAT     (null)
    NLS_TIMESTAMP_TZ_FORMAT     (null)
    NLS_DUAL_CURRENCY     (null)
    NLS_COMP     BINARY
    NLS_LENGTH_SEMANTICS     BYTE
    NLS_NCHAR_CONV_EXCP     FALSE
    select * from NLS_SESSION_PARAMETERS returns:
    NLS_LANGUAGE     ICELANDIC
    NLS_TERRITORY     ICELAND
    NLS_CURRENCY     kr.
    NLS_ISO_CURRENCY     ICELAND
    NLS_NUMERIC_CHARACTERS     ,.
    NLS_CALENDAR     GREGORIAN
    NLS_DATE_FORMAT     DD.MM.RRRR
    NLS_DATE_LANGUAGE     ICELANDIC
    NLS_SORT     ICELANDIC
    NLS_TIME_FORMAT     HH24:MI:SSXFF
    NLS_TIMESTAMP_FORMAT     DD.MM.RRRR HH24:MI:SSXFF
    NLS_TIME_TZ_FORMAT     HH24:MI:SSXFF TZR
    NLS_TIMESTAMP_TZ_FORMAT     DD.MM.RRRR HH24:MI:SSXFF TZR
    NLS_DUAL_CURRENCY     kr.
    NLS_COMP     BINARY
    NLS_LENGTH_SEMANTICS     BYTE
    NLS_NCHAR_CONV_EXCP     FALSE

Maybe you are looking for

  • Flex builder error

    Im using Flex builder 2.0.1 (since I didnt find a forum for flex builder 2 Ill post here...) I've opened an existing project, but I cant run the mxml file. When I try to open the mxml file to edit it, in the Flex development perspective, I've got the

  • Group compilations in itunes 10

    hello everybody.. i have just spent 3 hours reading post forums but nobody could really answear clearly about grouping compilations in itunes 10. I have my library in an external disk, i have many compilations and now they are divided as artist.. how

  • Functional module Or BAPI

    Hello Guys, At my Client The Condition of table MSEG is not good, Now I have to create a report for Material wise Stock againest Production Order No. Is There any Functional Module Or BAPI Is available which provide me the Stock with respect to Mater

  • Why not to Join Fatc to fact tables in OBIEE... What is the Logical Reason

    Why not to Join Fatc to fact tables in OBIEE... What is the Logical Reason Thanks in advance V

  • 5 Free Downloads Per day

    Is anyone else having the problem where the Ovi store lets you have 5 free downloads per day but you can actually only download 4 and it tells you that ou have reached the maximum of 5.  No wonder their making money, since when has 4 suddenly become