Answered
Minus vanishes with Latex interpreter (Linux system)
This seems too long for a comment, but it is not really an answer either ... I am pretty sure MATLAB uses its own LaTeX engin...

14 years ago | 0

Answered
Trouble WIth Kerning Copying Figures to Word
Copying/exporting figures in MATLAB is a nightmare. Use <http://www.mathworks.co.uk/matlabcentral/fileexchange/23629-exportfig e...

14 years ago | 0

| accepted

Answered
format numbers in plot
instead of your char(a) I would use num2str(double(a), 6) or sprintf('%0.6f', double(a))

14 years ago | 0

| accepted

Answered
Do what Excel does in curve fitting in Matlab
While it doesn't do everything you want I would suggest looking at the source for lsline type lsline It takes care of pl...

14 years ago | 0

Answered
quick itteration
The best thing to do would be to move the plotting outside the loop: ... end figure(1); plot(xra,yra,'k.'); ...

14 years ago | 0

| accepted

Answered
Creating a Colour Wheel in lab colour space
I believe you can convert your RGB values to CIELAB with <http://www.mathworks.co.uk/matlabcentral/fileexchange/28790-colorspace...

14 years ago | 0

Answered
axis tight manipulation
You could do something like set(AX(2), 'YLIM', [min(ROC(:)), max(ROC(:))]);

14 years ago | 0

| accepted

Answered
Tutorial: linking to an answer
I found the instruction in a comment by Walter to this <http://www.mathworks.com/matlabcentral/answers/994-wish-list-for-matlab-...

14 years ago | 0

| accepted

Answered
Use of Evalin
You need to evaulate the i in the current workspace and not the base: for i=1:str2num(get(handles.nosensorentry_tag,'string...

14 years ago | 0

Answered
Programming a Reaction Timer Test
MATLAB and the toolboxes provided by TMW is very powerful for general problems. Contribution on the <http://www.mathworks.com/ma...

14 years ago | 0

Answered
Subplot line colors
You cannot do it easily: <http://www.mathworks.co.uk/support/solutions/en/data/1-15TTM/index.html?solution=1-15TTM > <htt...

14 years ago | 0

Answered
removing case sensitivity in matlab
This has been discussed before: <http://www.mathworks.com/matlabcentral/answers/34554-disabling-the-case-sensitive-mismatch-e...

14 years ago | 0

Question


Tutorial: linking to an answer
I know this has been asked/discussed before, but my google foo is failing me (and the Answers search system is just down right b...

14 years ago | 1 answer | 0

1

answer

Answered
Save/Restore Variable Editor State
Why not just suspend/hibernate your machine? You could also run MATLAB in a virtual machine and then suspend that machine.

14 years ago | 0

Answered
Rare examples of confusing error messages
Another unhelpful aspect of error handling in MATLAB is if you catch an error in a callback and then rethrow the error, you lose...

14 years ago | 1

Answered
Rare examples of confusing error messages
Definitely on the irrelevant side, but luckily it was taken care of pretty quickly. I think it might be the first bug I reported...

14 years ago | 2

Answered
Subplot spacing
From an enhancement request I put in to TMW 2 years ago: "I think that subplot puts too much space between the axes as well as b...

14 years ago | 1

| accepted

Answered
Subplots limit
I believe the limits on subplot depend on the figure size and the monitor resolution. An axis must have a minimum size of at lea...

14 years ago | 0

Answered
Calculating the volume inside an arbitrary closed surface
While not identical, you might want to look at some of the examples for calculating the volume under a surface http://blogs.m...

14 years ago | 0

Answered
Dynamically add edit boxes using uicontrol and how to get the reference
You need to save the handles that are created by uicontrol into the gui handles object ... handles.hEdit(i) = uicontrol( ...

14 years ago | 0

Answered
Eye tracking controlled mouse
You can move the mouse to point x, y with set(0, 'PointerLocation', [x, y])

14 years ago | 0

Answered
logical indexing of a matrix with different columns
Sounds like homework to me, but I hope it is not ... I will give you a piece, can you figure out how to make it work on only ...

14 years ago | 0

Answered
Are Regular Expressions the best way to do this job?
I think the answer depends on what you mean by regular expressions. In MATLAB, I think of doc regexp doc regexprep Fo...

14 years ago | 1

Answered
edit text, push button and output.
If you make an additional text box on your gui you can then set the string of that text box to be str where str = { st...

14 years ago | 0

Answered
uiresume to allow code to run with dialog box still open?
This is the basics of a gui. There are lots of demos and documentation of how to make a gui. Basically you want a one button gui...

14 years ago | 1

Answered
how to get keyboard input to move things ?
Graphics objects are not automatically refreshed. You might need to use drawnow. doc drawnow

14 years ago | 0

Answered
Programming a Reaction Timer Test
How accurate does the timing need to be? If you are looking for sub millisecond timing, then no. If you want centisecond timing,...

14 years ago | 0

Answered
set method for class
It looks like the festi property only depends on the strengthClass property. You could create a set method for strengthClass whi...

14 years ago | 0

Answered
Function inside a function
You could just recursively call the function Prod.

14 years ago | 0

Answered
continue for-loop despite matlab error
You could do something like for ii = 1:n try % your code catch ME warning('Something happened'); ...

14 years ago | 4

| accepted

Load more