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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 0

| akzeptiert

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

Frage


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

etwa 14 Jahre vor | 1 Antwort | 0

1

Antwort

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 1

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

etwa 14 Jahre vor | 2

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

etwa 14 Jahre vor | 1

| akzeptiert

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 1

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 1

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 0

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

etwa 14 Jahre vor | 4

| akzeptiert

Mehr laden