已回答
increasing precison of num2str for dlmcell function.
*edit* So its not a display format issue, looking at the help for str2num you can see that it indicates that you can specify ...

10 years 前 | 0

| 已接受

已回答
Error using ==> dicominfo in standalone exe
You dont need pwd as a global. Did you add the dicom libraries when you compiled your code? if you think the filename is a...

10 years 前 | 0

| 已接受

已提交


str2html
Convert str to HTML format strings for use in uimenus and uicontrols

10 years 前 | 1 次下载 |

Thumbnail

已提交


SaveCurrentEditorFiles
Save current editor files, can be used to easily reopen all files from a previous project/session.

10 years 前 | 1 次下载 |

已回答
How can I draw a arrow
See <http://www.mathworks.co.uk/help/matlab/ref/annotation.html annotation> for drawing arrows.

10 years 前 | 1

已提交


comparevars
Compare any variables to detect difference in class, size and within a user defined tolerance

10 years 前 | 1 次下载 |

Thumbnail

已回答
howto multiline error msg
error('ErrorTAG:TagName', strcat ( 'very long error msg ', ... 'bla bla bla') )

10 years 前 | 0

已回答
Displaying a figure with specified properties
or set ( figure_test, 'visible', 'on' )

10 years 前 | 0

已回答
How can I add text to a plot?
Is text a variable in your workspace? Type: whos text In the command line to check. clear text To clear the...

11 years 前 | 0

| 已接受

已回答
how to combine multiple output in one lines?
help fprintf help disp

11 years 前 | 1

已回答
How to delete persistent variables in a timer fcn
if you want to keep your current methodology you need to add a "clear" option to your timer callback function which gets called ...

11 years 前 | 0

已回答
Dynamic Legends plot option (error: two legend lines for each plot)
Is this the type of feature your after: figure; x = [0:0.01:2*pi]; hold on; plot ( x, sin (x), 'DisplayName', 'P...

11 years 前 | 0

已回答
What is missing from MATLAB?
From R2012b onwards - Menus are missing! :)

11 years 前 | 1

已回答
How to concatenate in a loop?
yes.

11 years 前 | 0

已回答
The best way to save huge amount of data.
refreshing the waitbar 12000 times will actually take quite a long time, try refreshing every 100 files

11 years 前 | 1

已回答
How can I make the contents of a pop-up box in a GUI dependent on the selection of another pop-up box in the same GUI?
The code below should show you an example of what you could do linking 2 pop menus and contents. Maybe from that you can work...

11 years 前 | 0

| 已接受

已提交


Multi Column Listbox
Multi column listbox, including filtering & colouring of columns & extraction of individual values

11 years 前 | 2 次下载 |

Thumbnail

已回答
popupmenu in GUI, string call backs.
<https://www.mathworks.co.uk/matlabcentral/fileexchange/24861-41-complete-gui-examples This is a good place to start learning ab...

11 years 前 | 1

已回答
Creating variable whose name is part of a string
see <http://www.mathworks.co.uk/matlabcentral/answers/56124 this question> Basically - dont use eval - its bad! use dynamic ...

11 years 前 | 2

| 已接受

已回答
Adding additional Information to a figure/plot
You could get the x and y limits from your plot and then calculate a position for the <http://www.mathworks.co.uk/help/matlab/re...

11 years 前 | 0

提问


R2012b - Right Click Toolstrip items -> add to shortcuts - Not on all items
In R2012b on the toolstrip you can add items that you commonly use in the toolstrip to your quick access toolbar (QAT) - however...

11 years 前 | 1 个回答 | 1

1

个回答

提问


Matlab publish command use cases
I use Matlab every (working) day and have found little practical use for the publish command - it looks good in demos but in a r...

12 years 前 | 2 个回答 | 0

2

个回答

提问


Problem with built in and interp1
All, I'm having an issue that built in cant find the native interp1 function, see code below: % initialsie x = [0:0....

12 years 前 | 1 个回答 | 0

1

个回答

已回答
How to vectorize these codes
help isnan

12 years 前 | 0

已回答
Reading in and Evaluating strings from standalone GUI using appdata
Am I correct in assuming the user enters *any* string which then gets executed in eval? This is *NOT* advisable.... for exampl...

12 years 前 | 0

已回答
Using plot command in a loop
using eval is almost always a bad idea. Store your data as Data(1), Data(2) etc..... rather than Data1, Data2 etc.... ...

12 years 前 | 0

提问


uitree & uitreenode in R2011 & R2012
Hi all, Does anyone know if uitree or uitreenode changed from R2010 onwards? I have a function which I am planning on upload...

12 years 前 | 1 个回答 | 1

1

个回答

已回答
Copy the value from a variable to a new name
in your code - filename is a number so you have two choices 1. use num2str to change it from a number to a string new...

12 years 前 | 0

| 已接受

已回答
ismember function too slow
if you want to keep it in the loop you can do: for n=1:length(B) if min (abs( A-B(n)) ) == 0; % do somet...

12 years 前 | 0

加载更多