Linear algebra for javascript [closed] - javascript

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am doing a couple of heavy linear algebra computations in my javascript code which results in blocking the browser. I was wondering what is the best way to handle heavy mathematical computations in a web application?
I am using php on serverside. My question is should I use linear algebra libraries in php or is there a way I can use MATLAB in my web application? Any other suggestions to handle this?

use web workers, it like running your code in a seprate thread
http://www.html5rocks.com/en/tutorials/workers/basics/

Related

Any good programming practices/tools to reduce memory fragmentation in JS? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I was noticing very high usage of memory in Firefox, and I saw pages like Gmail and another heavy web-app I was working on, were >100mb! Looking through and seeing some high "unused-gc-things" in about:memory, I found this bug has been reported here and here and is a common problem without a good solution :(
Is there a good tool for detecting arenas of un-garbage-collectable objects short of compiling a special build of Firefox or other browser? And are there better methodologies of writing web-apps that don't use much memory? I would imagine using ArrayBuffer or asm.js may be more efficient as it has one set memory pool, but that doesn't play well with the usual DOM-based interaction and javascript function-al "class"-based programming of most web-apps.

Best way to understand javascript complex code? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
What is the best way to understand javascript complex code, like I use to debugger for understand the java complex code.
So, there is any way for javascript like java?
you can use either IE/Chrome Developer Tools, press F12 on the browser and afterward put any breakpoint on javascript file.

Performance: NaCl vs Emscripten [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
How does Google's native client (both NaCl and PNaCl) compare to Emscripten in ported C++ code performance?
The best way to find out is to port something and profile. I have done work with both systems, porting CPU-intensive C/C++ libraries to both NaCl and JS-via-Emscripten. I have found both to be remarkably performant. Not exactly the same as compiled C/C++, but fast enough that they can accomplish their tasks in real-time.

Implementing algorithms using javascript [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I am developing a webbased application using javascript and I am applying a lot of algorithms on my data and a lot of processing on data is required.
I was wondering is it the common practice to do all the processing and implementing algorithms using javascript or should I do them somewhere else ( i.e. server side ) and just give the results to javascript for viewing?
Depends on what you're trying to do!
Generally if it's data crunching, you want to do that server side, and then present it to the user. Sometimes it can be helpful to offload some of this work to your client- but keep in mind, if you're pushing computing onto the client, it may cause a page to take longer to load.

Is it possible (and recommended) to use Javascript to perform server-side scripting? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
Is it possible to use Javascript to query databases to display text, images and other data and, generally to perform server-side scripting? And if so would you recommend using Javascript to do this or is it better to use PHP, Python, ASP etc?
Did you hear about node.js?
Yes, it's possible.
Recommended? -It depends, as always...
It's definitely possible, see Node.js. Practical? Depends on your situation entirely.
See this question and Aziz's comment for more links.

Categories

Resources