CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

View Poll Results: Which programming laguage are u using for scientific purposes?

Voters
21. You may not vote on this poll
  • C/C++, Visual C++, MFC etc

    12 57.14%
  • Fortran

    1 4.76%
  • Java

    3 14.29%
  • Matlab

    4 19.05%
  • Other (specify)

    1 4.76%
Page 2 of 2 FirstFirst 12
Results 16 to 26 of 26
  1. #16
    Join Date
    Aug 2005
    Location
    The Matrix
    Posts
    159

    Re: POLL: Prog language for research

    What about LabVIEW?
    /** The only stupid question is the one you never ask. */

  2. #17
    Join Date
    Mar 2006
    Location
    Holand
    Posts
    6

    Re: POLL: Prog language for research

    I do with scilab these days
    using peter;

  3. #18
    Join Date
    Apr 2006
    Location
    Chiny
    Posts
    7

    Re: POLL: Prog language for research

    I use starlogo
    Cheers!

    Mulan W. Yuan

  4. #19
    Join Date
    Dec 2001
    Location
    Greece, Athens
    Posts
    1,015

    Re: POLL: Prog language for research

    Quote Originally Posted by Sarevok
    What about LabVIEW?
    I have use this in the past (more than 4 years ago) for an audio application and I quite liked it. But if i remember correctly (and maybe I am not) it mostly has to do with signal processing measurement and control. But anyway, it is a really strong tool for researchers.
    Theodore
    Personal Web Page (some audio segmentation tools): www.di.uoa.gr/~tyiannak

  5. #20
    Join Date
    Oct 2005
    Posts
    166

    Re: POLL: Prog language for research

    I think the best way to go is Matlab not because it's Matlab, because to develop the ton of packages that Matlab provide require 200 man-years. If you need image processing algorithms you need 1 years to write that package before using it, and it's a very waste of time. As I know Matlab is written in C++ and use Java for interface.

    I also give points to Fortran, it contains a dreadful mathematics knowledges library and it's possible write compilers that optimize better than other all languages (contrarily of Java where the optimizations are impossible).

  6. #21
    Join Date
    Feb 2005
    Location
    Pune (India)
    Posts
    644

    Thumbs up Re: POLL: Prog language for research

    I use C++.....................

    -Anant

  7. #22
    Join Date
    Jun 2004
    Posts
    3

    Re: POLL: Prog language for research

    Mathematica

  8. #23
    Join Date
    Dec 2001
    Location
    Greece, Athens
    Posts
    1,015

    Re: POLL: Prog language for research

    Quote Originally Posted by nolxev
    I think the best way to go is Matlab not because it's Matlab, because to develop the ton of packages that Matlab provide require 200 man-years. If you need image processing algorithms you need 1 years to write that package before using it, and it's a very waste of time. As I know Matlab is written in C++ and use Java for interface.
    .....
    This is 100% true. And don't forget the tones of free code you can find on the net conserning methods\algorithms which are not bult-in matlab. There are 2 reasons for NOT to use matlab when dealing with signal\image processing, audio, video etc:
    1. Speed. Though, some times if one is carefull enough matlab code can be optimized. And sometimes, (however strange it sounds) matlab is faster than C++. Some very basic functions (e.g. fft()) are optimized in such a level, that they are very - very fast. The major problem (in my opinion) conserning the matlab speed is that (as far as I know) there is not optimization for running in multi-threading enviroments.
    2. Comercial Purposes. If one needs to implement sth for commercial purposes, then matlab is not the right solution. Of course, the subject of this thread is "prog language for research", so this is out of subject.
    Theodore
    Personal Web Page (some audio segmentation tools): www.di.uoa.gr/~tyiannak

  9. #24
    Join Date
    Oct 2005
    Posts
    166

    Re: POLL: Prog language for research

    I agree. It's also too slow the functions drawing, if you have ever drawn 3D functions it takes seconds to rotate the graph. I don't understand why they have not taken advantage of graphics acceleration.

  10. #25
    Join Date
    Dec 2001
    Location
    Greece, Athens
    Posts
    1,015

    Re: POLL: Prog language for research

    Quote Originally Posted by nolxev
    I agree. It's also too slow the functions drawing, if you have ever drawn 3D functions it takes seconds to rotate the graph. I don't understand why they have not taken advantage of graphics acceleration.
    This is true. And sometimes the mesh() function (for drawing 3-D functions) crashes... and plots nothing. But, you may find a solution to similar problems if you deal with the 3 rendering methods that matlab has. link here
    Theodore
    Personal Web Page (some audio segmentation tools): www.di.uoa.gr/~tyiannak

  11. #26
    Join Date
    Oct 2005
    Posts
    166

    Re: POLL: Prog language for research

    It could be useful thank you.

Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured