Answered
How to print a matrix as an uncompressed image file.
The function <http://www.mathworks.com/matlabcentral/fileexchange/16233-sc-powerful-image-rendering sc> was written to solve exa...

14 years ago | 0

Answered
Multiple Colormaps, freezeColors won't work
Use <http://www.mathworks.com/matlabcentral/fileexchange/23342-real2rgb-colormaps real2rgb> to convert your data matrices to ima...

14 years ago | 1

| accepted

Answered
keep figures from popping up when running.
This question has been <http://www.mathworks.com/matlabcentral/answers/5781-how-can-i-render-and-export-many-figures-without-the...

14 years ago | 1

Answered
How can I render and export many figures without the figures grabbing the window focus all the time?
The easiest option is to use the same figure window for each figure, and clear it before each new rendering. If you need to rese...

14 years ago | 3

| accepted

Question


How can I render and export many figures without the figures grabbing the window focus all the time?
I am rendering many figures in a sequence, and exporting them as images (I use export_fig, but could equally use saveas or print...

14 years ago | 2 answers | 2

2

answers

Answered
Saved figure different than actual figure size (?)
To get the output you expect (i.e. a fair representation of the figure on the screen) without having to set lots of options, use...

15 years ago | 0

Answered
Dumb mistakes we make with MATLAB.
clear Oops, I wanted to keep one of those variables.

15 years ago | 5

Answered
faire en utilisant l'algorithme de Dijkstra en matlab?
Cherchez Dijkstra au <http://www.mathworks.com/matlabcentral/fileexchange/?term=tag%3Adijkstra "File Exchange">.

15 years ago | 0

Answered
[DISCONTINUED] Wish-list for MATLAB Answer sections.
A list of who applied what tag, like on the File Exchange.

15 years ago | 0

Answered
Saving Figure using saveas() function
The function <http://www.mathworks.com/matlabcentral/fileexchange/23629-exportfig export_fig> (available on the File Exchange) w...

15 years ago | 1

| accepted

Question


How do I detect whether the MATLAB instance being used has a command line interface?
Examples of instances that don't have a command line would be code called through the MATLAB Engine, and compiled applications.

15 years ago | 1 answer | 1

1

answer

Answered
What is missing from MATLAB?
More efficient compilation of MATLAB code to avoid memory churn (hence slower computation) of large arrays. Examples: B ...

15 years ago | 1

Answered
[DEPRECATED] What frustrates you about MATLAB?
It's very expensive (unless you're a student), especially if you use lots of toolboxes. Fortunately my company pays :), but if I...

15 years ago | 12

Answered
openmp mex commands for R2010b
On Windows using Microsoft Visual Studio I add the /openmp option to the relevant line of my mexopts.bat file, thus: set ...

15 years ago | 1

| accepted

Answered
What do you like about MATLAB?
The language is such that very complicated programs can be written quickly in very few lines (once you've learned the basic synt...

15 years ago | 3

Answered
[DEPRECATED] What frustrates you about MATLAB?
It can be very slow, compared to the same functionality written in, say, C. For example, for loops filling in cell arrays are...

15 years ago | 1

Answered
What do you like about MATLAB?
The debugging tools are pretty good. You can set breakpoints, even conditional ones (not sure about watchpoints on data values, ...

15 years ago | 1

Answered
What do you like about MATLAB?
The profiling tool is AWESOME. It is so easy to see where code bottlenecks are.

15 years ago | 3

Answered
[DEPRECATED] What frustrates you about MATLAB?
MATLAB's figure rendering and exporting functions are so full of bugs and "features" it defies belief. The rendering is very slo...

15 years ago | 31

Answered
[DEPRECATED] What frustrates you about MATLAB?
MATLAB is lacking tools for saving movies in decent compressed video formats (e.g. MPEG4, H.264 etc.). Currently I find myself s...

15 years ago | 6

Question


What do you like about MATLAB?
I use MATLAB most days (when I'm at work!). It makes my life easier, for many reasons, which is why I like it. What are the rea...

15 years ago | 15 answers | 5

15

answers

Question


[DEPRECATED] What frustrates you about MATLAB?
I love MATLAB. It is so quick and easy to write software to do what you want. It has excellent debugging and profiling tools. It...

15 years ago | 160 answers | 25

160

answers

Question


I have a C++ class. How can I interface to it through a MATLAB class?
I have a C++ class. Sometimes I write my own, but I found this one online. It's great, and I'd like to use it in MATLAB. The ...

15 years ago | 6 answers | 8

6

answers

Question


How can I put a MATLAB figure in a presentation, and rotate the axes during the presentation?
I have a figure: logo; set(gcf, 'color', 'w'); Lovely! I'd like to put that figure, or at least the object in the fig...

15 years ago | 3 answers | 1

3

answers

Question


How can I put a MATLAB figure in a presentation so that the slide background shows through?
Let's make a figure: logo; set(gcf, 'color', 'w'); alpha(0.7); Doesn't that look nice. Now I'd like to place that ...

15 years ago | 1 answer | 2

1

answer