답변 있음
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년 초과 전 | 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년 초과 전 | 0

| 수락됨

제출됨


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

10년 초과 전 | 다운로드 수: 3 |

Thumbnail

제출됨


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

거의 11년 전 | 다운로드 수: 1 |

답변 있음
How can I draw a arrow
See <http://www.mathworks.co.uk/help/matlab/ref/annotation.html annotation> for drawing arrows.

거의 11년 전 | 1

제출됨


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

거의 11년 전 | 다운로드 수: 2 |

Thumbnail

답변 있음
howto multiline error msg
error('ErrorTAG:TagName', strcat ( 'very long error msg ', ... 'bla bla bla') )

거의 11년 전 | 0

답변 있음
Displaying a figure with specified properties
or set ( figure_test, 'visible', 'on' )

거의 11년 전 | 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년 전 | 0

| 수락됨

답변 있음
how to combine multiple output in one lines?
help fprintf help disp

11년 초과 전 | 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년 초과 전 | 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년 초과 전 | 0

답변 있음
What is missing from MATLAB?
From R2012b onwards - Menus are missing! :)

11년 초과 전 | 1

답변 있음
How to concatenate in a loop?
yes.

11년 초과 전 | 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년 초과 전 | 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년 초과 전 | 0

| 수락됨

제출됨


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

11년 초과 전 | 다운로드 수: 1 |

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년 초과 전 | 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년 초과 전 | 2

| 수락됨

답변 있음
Running MATLAB with a shell script, redirecting stdin and stdout
help diary

거의 12년 전 | 0

답변 있음
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...

거의 12년 전 | 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...

거의 12년 전 | 답변 수: 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년 전 | 답변 수: 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년 전 | 답변 수: 1 | 0

1

답변

답변 있음
How to vectorize these codes
help isnan

12년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 답변 수: 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년 초과 전 | 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년 초과 전 | 0

더 보기