Respondida
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...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 0

| aceptada

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

más de 14 años hace | 0

| aceptada

Respondida
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...

más de 14 años hace | 0

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

más de 14 años hace | 0

| aceptada

Respondida
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...

más de 14 años hace | 0

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

más de 14 años hace | 0

| aceptada

Respondida
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-...

más de 14 años hace | 0

| aceptada

Respondida
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...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 0

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

más de 14 años hace | 0

Pregunta


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...

más de 14 años hace | 1 respuesta | 0

1

respuesta

Respondida
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.

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 1

Respondida
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...

más de 14 años hace | 2

Respondida
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...

más de 14 años hace | 1

| aceptada

Respondida
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...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 0

Respondida
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( ...

más de 14 años hace | 0

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

más de 14 años hace | 0

Respondida
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 ...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 1

Respondida
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...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 1

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

más de 14 años hace | 0

Respondida
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,...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 0

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

más de 14 años hace | 0

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

más de 14 años hace | 4

| aceptada

Cargar más