Thread: Integration

  1. #16
    ¡Amo fútbol!
    Join Date
    Dec 2001
    Posts
    2,138
    Have you considered implementing symbolic support, kinda like on the TI-89? It can keep the answers in terms of variables, and is able to find exact derivates and integrals.

  2. #17
    Senior Member joshdick's Avatar
    Join Date
    Nov 2002
    Location
    Phildelphia, PA
    Posts
    1,146
    Originally posted by Sang-drax
    It is inspired by C++, Pascal and a bit from the TI-83 and Casio calculator languages.
    The first thing I ever programmed on was a TI-83. There are still a lot of things from that language that I like. A for loop was this easy:
    Code:
    FOR(I,1,10,2)
    // is equivalent to
    for(i = 1; i <= 10; i+=2)
    Aaaaah, that brings back some fond memories of learning to program while bored in the back of my pre-calc class last year.

    Anyway, Sang-drax, how do you plan on using this language of yours?
    FAQ

    "The computer programmer is a creator of universes for which he alone is responsible. Universes of virtually unlimited complexity can be created in the form of computer programs." -- Joseph Weizenbaum.

    "If you cannot grok the overall structure of a program while taking a shower, you are not ready to code it." -- Richard Pattis.

  3. #18
    ....
    Join Date
    Aug 2001
    Location
    Groningen (NL)
    Posts
    2,380
    As for the pronounciation of "Växjö":
    ....
    Thanks. Yep, last summer I made a trip through Scandinavia with my small tent and car. From Malmö to Stockholm, then to Lappland. From Lappland to Trondheim (N) and via the Hardangervidda and Kristiansand back to the Netherlands, well Fryslân actually.

    The â is a character the Dutch don't have, as many characters those poor Dutch don't have.

    It is pronounced as o, as in mother, thought the Danish write it as å. The y is pronounced as ee in feet, but shorter.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 5
    Last Post: 06-04-2009, 09:18 AM
  2. Numerical Integration by Trap Rule.
    By hexagons in forum C Programming
    Replies: 3
    Last Post: 03-25-2009, 10:12 AM
  3. Numerical Integration
    By Crazed in forum C Programming
    Replies: 13
    Last Post: 03-03-2008, 03:01 PM
  4. PC Cam Integration
    By neo_phyte in forum Networking/Device Communication
    Replies: 0
    Last Post: 10-25-2006, 01:34 AM
  5. perform numeric integration
    By Frank_Rye in forum C Programming
    Replies: 5
    Last Post: 10-18-2005, 01:17 PM