GPU Computing with MATLAB
Utilizing GPUs (Graphical Processing Units; primarily known for being found in high-end video cards) for scientific computing is a trend that has increasingly gained traction within the last decade. GPU computing is applicable to problems that are both massively parallel at a low level, and are computationally intensive (i.e. not data-transfer intensive). In many cases, MATLAB makes it very simple to use a GPU (if a GPU is available) interactively. Many existing MATLAB functions taking vectors or matrices have analogous functions that take vectors or matrices stored in a GPU's memory, and use the GPU to perform the calculation instead of the CPU. For instance, the following simple example demonstrates the difference:
This gives a taste of what is possible with MATLAB and GPU computing. For more information on GPU computing in general, see Understanding GPU Architecture.