Libraries for computing Symbolic derivative

Hi all! I am searching the Web for some utility libraries that allow to calculate the symbolic second derivative of a N variables function given in input in order to find its critical points. May you suggest me something that may help me? Thanks!

You haven't really specified what you want yet. What kind of functions do you want to differentiate?

Similar Messages

  • Seperate libraries for two ipods on same computer

    how can i set up seperate libraries for two ipods on same computer . running xp . after installing software for second ipod , i only have one version of itunes ,with only one library .tried setting up seperate playlists but that didnt help . thanks for help!

    The only way I know to have two entirely separate iTunes libraries on one computer is to have two Windows or Mac user accounts: How To Use Multiple iPods with One Computer

  • Multiple iPods with different libraries for each?

    Hi all, how do I set up iTunes so that I can sync up different iTunes libraries with different iPods? I have two iPods with different music on each and want to keep the libraries separate. (One is from an older computer.) The only option I see when plugging in the older iPod is "do you want to rease this iPod and sync with this iTunes library?" Yikes, no.
    I'm using iTunes 9.
    thanks,
    Scott

    It seems that you would just create your two separate libraries for the two iPods, library A for iPod A and B for B. Then, either don't connect iPod A to the computer when you have library B open or vice versa, but if you do, just select not to sync when the prompt appears.
    Alternatively, elect to manually manage the iPods.

  • Fortran library for computation? or should I learn C instead?

    I think Fortran is a good choice for computation. It works as its name suggests: just translating the formulas and no need to consider how your computer actually works.
    The problem is: I can not find free libraries like GSL to do random number generating, minimization, etc. Some professors in our department are using sort of routines from Numberical Recipe, but many people say its performance is not good and it even has some errors. The MKL library from Intel looks complicated and it also lacks some minimization rountines I am looking for.
    In C, GSL seems a very popular library for computation. I checked its manual and it contains all the things I need, but unfortunately there is no good interface for Fortran to use it.
    So one solution is to switch to C. In fact C is my first language(almost 10 years ago), and every time I see some C code it just reminds me some good memories. I also appreciate the protability of C. So I would like to pick up C again if I have enough time to play around. However, pointers seem a lot of distraction and for now I just want to get things done quickly..
    What's your opinion on this? Any idea will be appreciated and I particularly want to hear people from some computation backgrounds. (PS, I am in econ)

    Second for Numpy.  The concern with looping seems unwarranted.  If anything, you will need much less looping.  Case in point, the 1D Haar transform.  The first inner for loop has been replaced with a pair of list slices, [0::2] and [1::2].  (Those give the even and odd elements, respectively.)
    side note:  All the heavy lifting is done with Blas and Lapack, both very fast C math libs.  It should not be that much slower than straight C.  I really need to do some benchmarking.
    Numpy:
    def haar1D(vec):
    "[(-0.5 to 0.5)] -> [(-0.5 to 0.5)]"
    w = len(vec)
    while w > 1:
    s = (vec[0:w:2] + vec[1:w:2]) / 2.0
    d = (vec[0:w:2] - vec[1:w:2]) / 2.0
    vec = n.concatenate((s, d, vec[w:]))
    w = w / 2
    return vec
    Compared to the original C code (from http://www.cs.ucf.edu/~mali/haar/):
    void haar1d(float *vec, int n)
    int i=0;
    int w=n;
    float *vecp = new float[n];
    for(i=0;i<n;i++)
    vecp[i] = 0;
    while(w>1)
    w/=2;
    for(i=0;i<w;i++)
    vecp[i] = (vec[2*i] + vec[2*i+1])/sqrt(2.0);
    vecp[i+w] = (vec[2*i] - vec[2*i+1])/sqrt(2.0);
    for(i=0;i<(w*2);i++)
    vec[i] = vecp[i];
    delete [] vecp;
    (I am reasonably certain the whole sqrt(2) thing was a bug.  Have not found it in any other literature.)
    Last edited by keenerd (2010-05-02 13:18:09)

  • FTP_CONNECT: User ------- has no access authorization for computer -------.

    Hi, could anyone please help me resolve the following issue:
    When i run the code below, it comes back saying "could not connect to "host". When tried to run in debug or test the FM "ftp_connect" it says "user ..... has no access authorization for computer .....
    REPORT  ZALB_FTP_TEST.
    types: begin of t_ftp_data,
             line(132) type c,
           end of t_ftp_data.
    data: lv_ftp_user(64)                value 'branch'.     "change this
    data: lv_ftp_pwd(64)                 value 'careful'. "change this
    data: lv_ftp_host(50)                value '10.50.1.199'.     "change this
    data: lv_rfc_dest like rscat-rfcdest value 'SAPFTP'.
    data: lv_hdl    type i.
    data: lv_key    type i               value 26101957.
    data: lv_dstlen type i.
    data: lt_ftp_data type table of t_ftp_data.
    field-symbols: <ls_ftp_data> like line of lt_ftp_data.
    *describe field lv_ftp_pwd length lv_dstlen.
    lv_dstlen = strlen( lv_ftp_pwd ).
    call 'AB_RFC_X_SCRAMBLE_STRING'
      id 'SOURCE'      field lv_ftp_pwd
      id 'KEY'         field lv_key
      id 'SCR'         field 'X'
      id 'DESTINATION' field lv_ftp_pwd
      id 'DSTLEN'      field lv_dstlen.
    call function 'FTP_CONNECT'
      exporting
        user            = lv_ftp_user
        password        = lv_ftp_pwd
        host            = lv_ftp_host
        rfc_destination = lv_rfc_dest
      importing
        handle          = lv_hdl
      exceptions
        not_connected   = 1
        others          = 2.
    if sy-subrc ne 0.
      write:/ 'could not connect to', lv_ftp_host.
    else.
      write:/ 'connected successfully. session handle is', lv_hdl.
      call function 'FTP_CONNECT'
        exporting
          handle        = lv_hdl
          command       = 'dir'
        tables
          data          = lt_ftp_data
        exceptions
          tcpip_error   = 1
          command_error = 2
          data_error    = 3
          others        = 4.
      if sy-subrc ne 0.
        write:/ 'could not execute ftp command'.
      else.
        loop at lt_ftp_data assigning <ls_ftp_data>.
          write: / <ls_ftp_data>.
        endloop.
        call function 'FTP_DISCONNECT'
          exporting
            handle = lv_hdl
          exceptions
            others = 1.
        if sy-subrc ne 0.
          write:/ 'could not disconnect from ftp server'.
        else.
          write:/ 'disconnected from ftp server'.
        endif.
      endif.
    endif.
    Thanks in advance for the help.

    It doesn't work for me if I just maintain * entry.
    But it works after I maintained specific IP address into the table,
    ref notes:2072995 - User has no access authorization for computer
    Cause
    The message comes after the implementation of note '1605054 - Restriction in access to FTP Servers & usage of test reports' or upgrading to a
    support package that contains this note. This note was created to prevent malicious users from accessing remote FTP servers.
    Resolution
    1. Please ensure that all manual steps from note 1605054 are implemented in your system along with the code corrections
    2. Then please enter the allowed FTP servers into the table SAPFTP_SERVERS or enter ‘*’ to allow all FTP servers.

  • Rfc static libraries for Unicode (Linux)

    Hi all!
    Does anybody know if it is possible to use RFC static libraries for Unicode on Linux?
    I can compile and link my application, but when I am running it, I get message:  "undefined symbol: strtolU16". librfcu.a  is the only static library, which is provided in RFCSDK. Do I need to link my application with any other library?
    Everything works fine with non-unicode static library.
    Thank you in advance,
    Elena

    Oracle does not provide any static libraries for MS Windows.

  • Any one knows how to have 2 libraries for your iphone 4, one in an iMac and other in an MacBook pro ?

    Hi, does any one knows how can i have 2 libraries for my iphone 4, one in my iMac and the same apps in my MacBook Pro ?????
    can i only have one library ????
    do i have to delete my library from one of my Macs?
    thanks so much.
    everything is very easy on Mac but transfering your contacts, apps, music and other info is so hard !!!!!
    they should fix this problems for all the users .

    Iphone will sync itunes contacts and pics with one and only one computer at a time  if you sync to another, it will indeed erase the current content and replace with content from the new library.

  • Can I have two different libraries for iTunes?

    I would like to have two different libraries for iTunes. How can I do it?
    Regards.

    To create or access a second (or more) library, hold down the Option key (or Shift key in Windows) when launching iTunes 7. In the resulting dialogue you will get the option to create a new library or navigate to the other Library: Using multiple iTunes libraries -Mac
    Note: You can only have one Library open at a time and iTunes will default to the last library opened if you don't use the keyboard command to choose one.

  • Multiple Libraries for iTunes

    I am wondering if there is any way to create multiple libraries for my music? I use my iTunes for both work and personal music and would like to be able to move my work music into a separate library. I've seen this concept in accounting programs, where you create new companys in order to store and track separate information. Any suggestions? I am currently using iTunes 5.0

    Cherrie:
    Try iTunes Library Manager. It's not free, but it does work.
    Lita

  • How do I set up two libraries on one pc so that we have two separate libraries for each iPhone?

    How do I set up two libraries on one pc so that we have two separate libraries for each iPhone?

    Launch it with the Shift key held down, or create a second Windows user account.
    (60390)

  • My new iphone 5 is frozen, with the cord to computer symbol on the screen after failing to finish updating to ios 7.  iTunes no longer sees the phone. I've tried rebooting the computer, rebooting the iPhone, but iTunes still doesn't see the iPhone.

    my new iphone 5 is frozen, with the cord to computer symbol on the screen after failing to finish updating to ios 7.  iTunes no longer sees the phone. I've tried rebooting the computer, rebooting the iPhone, but iTunes still doesn't see the iPhone.

    If your computer doesn't see the phone when you plug it in, you may have to take it to an Apple Store.

  • Just downloaded the new OS for IPhone. Despise the appearance. It has jacked with the way I like things in some unacceptable ways. Is there any way to keep the OS, but return to the old appearance? Important to know BEFORE I download OS for computer.

    Just downloaded the new OS for IPhone. Despise the appearance. It has jacked with the way I like things in some unacceptable ways. Is there any way to keep the OS, but return to the old appearance? Important to know BEFORE I download OS for computer.

    I know I am responding to my own thread, but I an SOOOO disgusted with Apple right now.
    The new iOS 7 was the lead story on CNN today... and it wasn't positive. Easy to see why, it's a graphics disaster. It is ugly, difficult to read, doesn't interface aesthetically with the iPhone 4S, and gives everyone in America vertigo. Either fix the appearance, or find some way to allow us to roll back to our previous iOS. Do so quickly, or this life-long Apple customer [circa 1978] will be moving on. If this represents shades of what is coming with OS Maverick, I am petrified. Further, I am a GM of a chain of newspapers and websites in the Austin, Texas area. I will be ripping out a scathing editorial. The notion that we can't roll back from something millions of us hate is despicable. I'm giving you one week. Be sure I am not alone.

  • Had to delete iTunes for computer repair. Downloaded new version 10. Would not open -Message: "iTunes Library.itl cannot be read because it was created by a newer version of iTunes"

    After getting message below iTunes will not open- just disappears off screen.
    Had to delete iTunes for computer repair. Downloaded new version 10. Would not open -Message: "iTunes Library.itl cannot be read because it was created by a newer version of iTunes"

    Unless you've recently attempted to downgrade iTunes this is probably a sign of a corrupt library file. See Empty/corrupt library after upgrade/crash.
    tt2

  • Restore using Time Machine to new hard drive, but last "full" backup was 2012.  how do I restore the rest of the Time Machine backups, particularily IPHOTO libraries for each user?

    Restore using Time Machine to new hard drive, but last "full" backup was in 2012.  How do I restore the rest of the Time Machine backups, particularily IPHOTO libraries for each user? 
    I entered Iphoto for my user and only photo up until 2012 were in the library.  I thought the restore would do the incremental Time Machine backups too.....
    Running 10.8.2

    It usually means you are running Mavericks but have an earlier version of iPhoto. Open the App Store and upgrade your version of iPhoto to the Mavericks version.
    The iWork apps are free with a new iOS device since 1 SEP 2013. They are free with a new Mac since 1 OCT 2013. They are also free with the upgrade to OS X Mavericks 10.9 if you had the previous version installed when you upgraded.The iWork apps are free with a new iOS device since 1 SEP 2013. They are free with a new Mac since 1 OCT 2013. They are also free with the upgrade to OS X Mavericks 10.9 if you had the previous version installed when you upgraded.
    iWork and iLife for Mac come free with every new Mac purchase. Existing users running Mavericks can update their apps for free from the Mac App Store℠. iWork and iLife for iOS are available for free from the App Store℠ for any new device running iOS 7, and are also available as free updates for existing users. GarageBand for Mac and iOS are free for all OS X Mavericks and iOS 7 users. Additional GarageBand instruments and sounds are available for a one-time in-app purchase of $4.99 for each platform.

  • 10.2 crashes when I try to convert old libraries for use in the new software. Is there a workaround for this? Or will i have to continue using the previous version to complete older projects?

    Final Cut Pro X 10.2 crashes when I try to convert old libraries for use in the new software. Is there a workaround for this? Or will I have to continue using the previous version to complete older projects? the only foreseeable solution is to begin any new projects on 10.2 or importing footage on 10.2 and starting form scratch--which is something i definitely don't want to do or have time to do. ANY advice, thoughts, or opinions would be greatly appreciated! Thank you!
    Running 10.10.3 // MacBook Pro (Retina, 15-inch, Early 2013) // 2.4 GHz Intel Core i7 // 8 GB 1600 MHz DDR3

    Exactly the same problem with me.
    Some other threads advice to remove fonts, clean the caches, remove add ins but nothing works consistenty, for some it looks like it works, for me it failed.
    What I did not try yet, was to move the Render files out of the malicious library to trash.

Maybe you are looking for

  • HT1178 How can I use Time Capsule to move music from one computer to another?

    I want to move all the music I have on my old laptop (macbook) to my new macbook pro. How can I do this? Easy, simple, steps would be greatly appreciated!

  • How  change NLS_NUMERIC_CHARACTERS parameter for load external table

    Hi, I use this version: OWB 11gR2 Database 11gR2 Parameter NLS_NUMERIC_CHARACTERS Database ., Instance ,. When I created database with wizard and in this moment I don't set spanish language, later I changed this parameters in instance parameters. Now

  • Where can I buy Genuine HP spare parts?

    Hi Friends, Due to overheating problem, I was suggested to replace my laptop's Heatsink. Since I bought my Laptop from DUBAI, I am unable to find the spare part in INDIA or NEPAL. Where can I get the spare part from? HP Pavilion dv4 Serial : [Persona

  • Documentation of ALE and IDOC

    Hi, I am Beginer of ALE and IDOC .Could you please provide the processing documentation of ALE and IDOC with an example. Thanks Satya

  • I am unable to record using vista

    I used to be able to use the recording icon on my Creative Media Source Organizer for my Zen V Plus. But now after I installed it on my vista, I am unable to use it. Each time I click on the record icon it says "The selected recording device cannot b