Mathmatical Notation

I am sorry that this question is not completely java orientated but it is for a jave program i am writing.
I have some notation I need help with:
g = [e1|...ek](i)
where e1 to ek are vectors and i is a vector. My question is this:
if it was just (e1)(i) g would just be a value, but i dont understand the [e1|...ek] bit throws me because i would end up with k different g values, or do i calculate the k values and total them up?
Thanks for any input.

first my english sucks so i hope you can understand me
g is a vector in a 'k' dimensions space
e1....ek is the base of the space
ex.for R3
e1=(0,0,1) e2=(0,1,0) e3=(1,0,0) is a base of the 3 dimension space
a vector of this space can be written like this
if g is a vector then g=(g1,g2,g3) OR g=(e1,e2,e3)(g1,g2,g3)
or with numbers if g=(1,2,3)
g=(1,2,3)=(1,2,3)((1,0,0),(0,1,0),(0,0,1))=(1,0,0)+(0,2,0)+(0,0,3)=(1,2,3)
get it?(i hope you do)
would end up with k different g values, or do i calculate the k >values and total them up?the vector g=[e1....ek] =[g1...gk] has a norm which you can calculate it
|g|=sqrt(g1^2+g2^2+....+gk^2)
if it was just (e1)(i) g would just be a valueWrong!!! It will be a vector too (e1)i=(1,0,,....0)i

Similar Messages

  • Select Query resulting in Scientific Notation

    Hello all,
    I am running a Select query through a batch file that extracts data from an Oracle database. Several of the fields that I am extracting from contain numbers that are up to 38 digits long. When I extract the data, it converts the numbers into scientific notation and it is important for me to have the entire field. Is there something I can change to my query that will pull the data in its entire form? This is what I'm running now:
    select * FROM ML.APPT where APPTDATE >= to_date('01/1/2010','mm/dd/yyyy'
    I apologize in advance if this has been answered already.
    Thanks!

    >
    When the extractor finishes, it returns the data into a flat file.
    don't quite understand the TO_CHAR function. Does this function mean I need to say something like this: select "TO_CHAR('column name', 99999999999999999999999999999999999999" FROM ML.APPT where APPTDATE >= to_date('01/1/2010','mm/dd/yyyy')
    >
    Yes- if the tool you use to extract the data (your 'extractor') is converting the numeric data to a string then it is responsible for creating the string in the proper format. If the number is an integer that can have as many digits as you have '9's in your sample format string then that is what you need to do.
    Here is how sql*plus (Oracle's tool) will display the data using default settings
    SQL> select 12345678901234567890123456789012345678 no_format,
      2  to_char(12345678901234567890123456789012345678, '99999999999999999999999999
    999999999999') with_format
      3   from dual;
    NO_FORMAT WITH_FORMAT
    1.2346E+37  12345678901234567890123456789012345678
    SQL>
    ----- TOAD will display something similiar but the default uses more decimal digits in the scientific notation data
    NO_FORMAT,WITH_FORMAT
    1.23456789012346E37, 12345678901234567890123456789012345678You can either format the numeric data in the query using TO_CHAR or the 'extractor' can do it when it converts the data to a string.

  • How do I use the Notation Declaration table on the Reference Pages in FM10 Win 7?

    I can find no documentation to explain the Notation Declaration table that exists on the reference pages.
    My DTDs (both XML and SGML) call for some specific notations to be used with certain graphic formats. For example, tiff files use the notation "TIF" and cgm files use the notation "CGM-BINARY".  I am not using DITA or S1000D.
    When round-tripping sgml and/or xml to/from FrameMaker I would like to get the graphic entity declarations to use notations that are alloted for in the DTD. I would like to avoid having additional notation statements in the sgml and/or xml.
    I am using FrameMaker 10 on a Windows 7, 64-bit system.
    Is this "Notation Declaration" table the correct place to look? Are there alternative methods to accomplish the notation assignment?
    Thanks,
      Mike

    You can use an extension to set a default font size and page zoom on web pages:
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • I have downloaded Firefox 6.. tried 7, and it will not connect once I attempt to open it initially. It comes up with blank boxes and notation states "waiting on firefox".. not sure what to do

    I had an issue with firefox opening zygna games on facebook last week. I uninstalled firefox and reloaded it. Actually tried it last week a few times and today tried Firefox 7 and then Firefox 6, which i now have on computer. When it goes to open initially, the screens come up blank. There is a little popup that I believe asks if i should set firefox as main browser, however no dialogue in the box. The notation on my computer says "waiting for firefox" and it just sits there.

    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.com/kb/Server+not+found
    *https://support.mozilla.com/kb/Firewalls

  • External table.How to load numbers (decimal and scientific notation format)

    Hi all, I need to load inside an external table records that contain 7 fields. The last field is called AMOUNT and it's represented in some records with the decimal format, in others records with the scientific notation format as, for example, below:
    CY001_STATU;2009;Jan;11220020GR;'03900;CYZ900;-9,99999999839929e-03
    CY001_STATU;2009;Jan;11200100;'60800;CYZ900;41380,77
    The External table's script is the following:
    CREATE TABLE HYP_DATA
    COUNTRY VARCHAR2(50 BYTE),
    YEAR VARCHAR2(20 BYTE),
    PERIOD VARCHAR2(20 BYTE),
    ACCOUNT VARCHAR2(50 BYTE),
    DEPT VARCHAR2(20 BYTE),
    ACTIVITY_LOC VARCHAR2(20 BYTE),
    AMOUNT VARCHAR2(50 BYTE)
    ORGANIZATION EXTERNAL
    ( TYPE ORACLE_LOADER
    DEFAULT DIRECTORY HYP_DATA_DIR
    ACCESS PARAMETERS
    ( RECORDS DELIMITED BY NEWLINE
    BADFILE 'HYP_BAD_DIR':'HYP_LOAD.bad'
    DISCARDFILE 'HYP_DISCARD_DIR':'HYP_LOAD.dsc'
    LOGFILE 'HYP_LOG_DIR':'HYP_LOAD.log'
    SKIP 0
    FIELDS TERMINATED BY ";"
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    "COUNTRY" Char,
    "YEAR" Char,
    "PERIOD" Char,
    "ACCOUNT" Char,
    "DEPT" Char,
    "ACTIVITY_LOC" Char,
    "AMOUNT" Char
    LOCATION (HYP_DATA_DIR:'Total.txt')
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    NOMONITORING;
    If, for the field AMOUNT I use the datatype VARCHAR (as above), the table is loaded but I have some records rejected, and all these records contain the last field AMOUNT with the scientific notation as:
    CY001_STATU;2009;Jan;11220020GR;'03900;CYZ900;-9,99999999839929e-03
    CY001_STATU;2009;Feb;11220020GR;'03900;CYZ900;-9,99999999839929e-03
    CY001_STATU;2009;Mar;11220020GR;'03900;CYZ900;-9,99999999839929e-03
    CY001_STATU;2009;Dec;11220020GR;'03900;CYZ900;-9,99999999839929e-03
    All the others records with a decimal AMOUNT are loaded correctly.
    So, my problem is that I NEED to load all the records (with the decimal and the scientific notation format) together (without records rejected), but I don't know which datatype I have to use for the AMOUNT field....
    Anybody has any idea ???
    Any help would be appreciated
    Thanks in advance
    Alex

    @OP,
    What version of Oracle are you using?
    Just cut'n'paste of you script and example woked FINE for me.
    however my quation is... An external table will LOAD all data or none at all. How are you validating/concluding that...
    I have some records rejected, and all these records contain the last field AMOUNT with the scientific notation
    select * from v$version where rownum <2;
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    select * from mydata;
    CY001_STATU     2009     Jan     11220020GR     '03900     CYZ900     -9,99999999839929e-03
    CY001_STATU     2009     Feb     11220020GR     '03900     CYZ900     -9,99999999839929e-03
    CY001_STATU     2009     Jan     11220020GR     '03900     CYZ900     -9,99999999839929e-03
    CY001_STATU     2009     Jan     11200100     '60800     CYZ900     41380,77
    CY001_STATU     2009     Mar     11220020GR     '03900     CYZ900     -9,99999999839929e-03
    CY001_STATU     2009     Dec     11220020GR     '03900     CYZ900     -9,99999999839929e-03
    CY001_STATU     2009     Jan     11220020GR     '03900     CYZ900     -9,99999999839929e-03
    CY001_STATU     2009     Jan     11200100     '60800     CYZ900     41380,77MYDATA table script is...
    drop table mydata;
    CREATE TABLE mydata
    COUNTRY VARCHAR2(50 BYTE),
    YEAR VARCHAR2(20 BYTE),
    PERIOD VARCHAR2(20 BYTE),
    ACCOUNT VARCHAR2(50 BYTE),
    DEPT VARCHAR2(20 BYTE),
    ACTIVITY_LOC VARCHAR2(20 BYTE),
    AMOUNT VARCHAR2(50 BYTE)
    ORGANIZATION EXTERNAL
    ( TYPE ORACLE_LOADER
    DEFAULT DIRECTORY IN_DIR
    ACCESS PARAMETERS
    ( RECORDS DELIMITED BY NEWLINE
    BADFILE 'IN_DIR':'HYP_LOAD.bad'
    DISCARDFILE 'IN_DIR':'HYP_LOAD.dsc'
    LOGFILE 'IN_DIR':'HYP_LOAD.log'
    SKIP 0
    FIELDS TERMINATED BY ";"
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    "COUNTRY" Char,
    "YEAR" Char,
    "PERIOD" Char,
    "ACCOUNT" Char,
    "DEPT" Char,
    "ACTIVITY_LOC" Char,
    "AMOUNT" Char
    LOCATION (IN_DIR:'total.txt')
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    NOMONITORING;vr,
    Sudhakar B.

  • How do I get iCal in Lion to read my old 10.6 calendar files, notational velocity files

    Hi everyone,
    I recently upgraded from 10.6 to 10.8 and did a clean install. I backed everything up using Time Machine and have chosen to transfer most things manually as there were a lot of applications and system files that I did not want to copy over. However, I've run into an issue when trying to transfer over my files for iCal -- I found the old calendar data in Users/my name/Library/Calendars, and copied it over into the Library file on my new machine. There wasn't a Calendars file yet, so I created it. However, when I open iCal, it doesn't show my old calendars-- I tried manually importing them, but it wants me to import each individual event -- there must be an easier way to do this. Where does iCal read its calendar data by default in 10.8? Do I have to do anything additional to get iCal to read it?
    Additionally, I can't find my old notational velocity notes -- they should be in Application Support under my old Library files, but I am not seeing them. A spotlight search hasn't yielded anything. Anyone know where they might be? I hadn't changed the default, so I imagine they ought to be there.
    Best,

    A quick look at their web site shows I've misinterpreted what you said - Notational Velocity isn't related to iCal. However if you are still having a problem with that the makers would be the people to ask.
    I'm not sure why you can't get iCal files to work if they are in the correct place. In 10.6.8 the Calendar folder includes a folder for each calendar, and these contain the .ics files which represent the actual events. I don't know whether 10.8 has altered the format as I don't use it.
    You originally said ' I found the old calendar data in Users/my name/Library/Calendars, and copied it over into the Library file on my new machine.' - did you copy the entire Calendars folder intact?

  • How can I get Numbers 3.2 to recognise 1e-5 as scientific notation?

    I just changed from Numbers '09 (2.3) to Number 3.2 on Mavericks (OS X 10.9.3) and the new version doesn't seem to recognise "e" or "E" as scientific notation. When I set the cell format to scientific and type "0.0015", Numbers returns "1.5×10^-03". I would however prefer to obtain "1.5e-3". And vice versa: if, after setting the cell format to scientific, I type "1.5e-3", it automatically formats the cell as text and I can't get it to recognise it as scientific notation. With "E" instead of "e", the problem is exactly the same. Does anyone know how I can change this setting? I already tried to search for an answer to my question, but couldn't find anything...

    if, after setting the cell format to scientific, I type "1.5e-3", it automatically formats the cell as text and I can't get it to recognise it as scientific notation.
    I can't duplicate the problem here, either when the cells are formatted as Automatic or as Scientific:
    When you type 1.5e-3 are you making sure not to enter a space after the e?  (When I type a space the cell automatically formats as Text.)
    SG

  • I'm looking for a text/music notation app

    I am a drummer in a cover band who would like to use my iPad for my shorthand version of drum charts.  What I currently have is a paper notebook, in which I have dedicated a page for each set.  On each page, I have the song title, then the main drum beat(s) (written in musical notation), followed by any notes regarding arrangement, tempo, etc.  All of this is condensed down into a couple of lines, so I can fit about 10 songs on each sheet of paper.  I could scan in what I have now and view it that way, but I would rather have clear and editable digital based notation and text.  Does anything like this exist, not for composing and arranging orchestral pieces, but for simply inserting a bar or 2 of music into some text?
    In other words:
    Locked Out Of Heaven    I------------------------------------I   Intro/V/PC/C/V/C etc...        120 bpm
                                         I---Musical notation---------I
                                         I------------------------------------I
                                         I------------------------------------I

    If Settings -> General -> Accessibility -> VoiceOver does not work, then it is unlikely iBooks will do text to speach on its own in the current version.
    <http://www.apple.com/feedback>
    I know that some competing services, Kindle, Nook, etc... are restricted in doing text to speach by the book publishers.
    If this is text in a PDF (not an ebook), then maybe there is another app that can to text to speach on PDFs.
    If it is published books that are of interest, there is Audible.com <http://www.audible.com/>
    In theory it should be possible to use the Mac OS X Text to Speach facilities to convert a document into an audio file, and they sync that to the iPod Touch.  I assume there is similar text to speach utilities for Windows systems.
    I'm also guessing that there are web sites dedicated to assisting sight impaired individuals that might provide ideas for getting text to speach options for the iPod Touch.

  • When printing I get notation:"An error has occurred in the script on this page"

    when printing I get notation:"An error has occurred in the script on this page", error 1791-Char 1- error invalid argument-Code 01-Can print Word, but not Web pages. Have Windows 7, Home and Internet Explore 10. Please help

    Sorry that you are having a problem with the script error. 
    Try to clear your CACHE and COOKIES on your internet. 
    Are you able to print from another program, such as Firefox, Google chrome, etc?
    Let me know if it prints. 
    **Click the KUDOS star on the left to say 'Thanks'**
    Please mark a reply "ACCEPTED AS SOLUTION" if it solved your problem, so others can find it.

  • List of users and their decimal notation settings in SAP system

    Hi all, i'm looking to get my hands on a list of all users in our SAP system and their respective decimal notation settings? I know that these can be mass changed using SU10 however I am unable to determine how to view a list of users and their settings.
    Thanks,
    James

    Hi James,
    You can find many useful reports, in SUIM transaction to see user details, but not decimal notation field. I don't know a report to show decimal notations, but as a workaround, in order to see the decimal notation, you can check "USR01-DCPFM" by using "SE16".
    Best regards,
    Orkun Gedik

  • How to do setting of  decimal notation and arithmatic and character note

    Hi colleagues
    I do have one problem
    And the following setting tried in SAP netweaver so do not give any hint for Netweaver
    The problem is stated as follows
    in output type in Germany they use , instead of . the dot signifies point that is .
    and we use , as a seperator in means suppose we have to write 2000 we write like wise means as per our requirement whether we need to mention 2.000 or 20.00 but in germany they use comma ,
    so in output type display point the problems are increasing and they are not getting solved.
    so it is the question of compatibility
    what went wrong i am unable to understand
    is there is any significance of country specific setting of decimal notation
    or any thing need hint towards the same.

    Hi
    For your output type assign a smartform and in the smartfrom write the program that the decimals should come like , instead of . then your requirement can be fulfilled
    Also check in OY04 wheather you can maintain or not
    Regards
    Srinath

  • How do I refer to a user defined field in a query  (using $ notation) ?

    if i have a user defined field in Invoice header called U_Test, and if I need to read it using a query (to be used on a formatted search).
    I am not quite sure of the syntax. can anyone help please?
    I tried
    $[$U_Test.0.0]  which is the accepted way with fields with numerical ids such as $[$8.0.0] etc.
    appreciate any help,
    Indika.

    Hi all,
    Aliw, the 38 is not the form number, is the Item Number (which I guess is a matrix). In your case the User Defined Field is a line UDF. In Indika´s case is a header UDF.
    And that´s the issue. As the indika´s UDF is a header UDF, it lays in a different form (which is named "-" + Main Form Name). Formatted searches work with the $[$Field.Column.Format] notation ONLY in the same form. So, if you try to get the UDF from another UDF, it will work with that notation (they are in the same form). But if you try to get the UDF from the main form, it won´t find it (It is in another form).
    In that case you should use the other notation, as Andrea, Alexey and Salvador told you in the posts before.
    Hope this clears a bit the issue.
    Regards,
    Ibai Peñ

  • Is $ notation of a variable supported in BPEL 10.1.3.3?

    Hi All,
    What version of BPEL (1.1, 2.0) is supported in Oracle SOA version 10.1.3.3 and JDev version 10.1.3.3.0? Specifically, can I use the $ notation of a variable to get its value ($var_name) instead of using the xpath function - bpws:getVariableData('var_name'). I was wondering if it is officially supported or not.
    Thanks,
    A.T

    You have to use the full xpath expression. BPEL 2.0 is going to be introduced in 11g.
    cheers
    James

  • Display Scientific Notation values in columns

    Hi,
    I have a column in a table that apparently displays the values in
    Scientific Notation. That is, the value in each column is always
    displayed as "6.4211E+15". Each value in this column should be a
    unique or different value. If I type "select * from <table_name>
    where <column_name> != 6.4211E+15;", I still get every row in
    this table. Is there a way to display the full value of this
    column so that I can view the unique value for each of these
    rows? If so, how does one accomplish this?
    Thank you,

    Welcome to SDN.
    do you mean to say that in some rows some column values will be blank and you want to replace the blanks with '-'.
    loop thru the itab which you are passing to tableview and for the blank cells pass '-'.
    <i>Also when the value is inserted at run time</i>
    so you are having editable tableview. to update the value back to the dbtable, you have to read it in oninputprocessing and update it to dbtable .
    search the forum on how to read the user entered value from the table view so that you can update the dbtable.
    Regards
    Raja

  • Scientific Notation on MID

    having trouble with a
    parsed out excel file.
    We import processor files into our application and do so with maybe 20 different processors.
    However one file is giving us a particular problem, even though the MID colum looks to be  a simple MID like this
    8788840008835  it actually shows up once  extracted like this 8.78884000884E+012 scientific notarion
    this is the only file we have this problem with and even if we go in and reformat the colum in various ways so the column looks correct it still spits out this scientific notation.
    tried number format likwe this  #LSNumberFormat(objSheet.Query.column2, "______")#
    and like this #numberformat(objSheet.Query.column2,'_______________________')#   it that keeps the number from being in scientific notation however it rounds the MID on the last number to the closest zero effectivly ruining the data.
    Any ideas on how to get around this?
    BTW its not the initial extraction thats doing it, we use it on many other excel files with no problems, only this file is giving us this problem
    Thanks in advance for any help

    scrollin,
    Your digits are all there. Just format those cells to either Text or Number. Leading zeros do tend to get lost unless you pre-format to text. You can force the cell format to text on the fly by prefixing your input with a single-quote.
    Regards,
    Jerry

Maybe you are looking for

  • After updating silverlight, i'm unable to open any pdf files in the system

    After updating silverlight, i'm unable to open any pdf files in the system

  • RE order related

    Hi All, Scenario 1: RE order should create with ref to or order and Re billing create with ref to RE order and  overall status should be complete. Scenario 2 : Same RE order If user check field in Additional data tab A in condition group- if they put

  • Windows Photos Viewer

    Up until yesterday when I attempted to open a JPG photo or file sent to my Hotmail account, it would direct me to Windows Photo Viewer. I then could open the photo using Miscrosoft Photo Gallery. Now it sends me to: C:\Users\Name\AppData\Local\Micros

  • Can I still make a playlist of podcasts with the new podcast app?

    Can I still make a playlist of podcasts with the new podcast app?

  • How to adjust the advance with invoice

    Hi all, the scenario is I am  getting Rs 2,00,000 as advance from one finance company.( I have created seperate nature account in finance co name in the liability side because always i have advance from it) then I am doing credit sales to that financ