Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

fivetoadsloth

macrumors 65816
Original poster
Aug 15, 2006
1,035
0
I've developed a mathematical tool in Mathematica/MATLAB that I need to port to a web based version. Ideally every user would have Wolfram's CDF player technology. Unfortunately, that is not the case. I've been able to use approximation methods, and I think as long as I have access to basic functions (+,-,/,x,^,etc) and a random number generator I should be fine.

I'm looking to create an interactive tool where the user is able to enter some numbers into text boxes, hit calculate, and have it display the results.


I'm not very familiar with creating interactive web content and I'm a little unsure what language you guys would recommend. I'm familiar with the basics of a few programming languages. I'd probably opt to do this in Java, but I've been told that Java applets are becoming a bit data.


Could someone tell me a language that is commonly used that would be able to do this and would be the most compatible with as many browsers as possible?


Thanks!
 
I'd probably opt to do this in Java, but I've been told that Java applets are becoming a bit data.
A few years ago (actually, quite a few years ago) this would have been a good option. A lot of Universities/tutorial sites used Applets. However, the problem today is device support. iOS won't. WinRT won't. Android (even though it makes extensive use of Java elsewhere) also won't.

Could someone tell me a language that is commonly used that would be able to do this and would be the most compatible with as many browsers as possible?

commonly used?
most compatible?

That would be, um, JavaScript, the language of the web.
 
It depends if you are OK with making a round-trip to the server each time you need to do something.

If you can do your computations on the server, you've got a ton of choices and don't need to worry about client compatibility since your engine only needs to run on your server. You could actually run MATLAB or Octave there, for example, to do the computations. Write a little PHP script to invoke it and present the results. The downside is the network round-trip, which makes things less responsive (and less interactive). Whether this matters or not can't be said without more information.

If you can rewrite your engine and want/need a more responsive UI, then the Javascript suggestion is indeed the best bet.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.