Respondida
Batch sounds slower than interactive parallel jobs
|batch| is opening its own MATLAB pool of four workers so this is included in the timing of the first snippet and not the second...

alrededor de 13 años hace | 1

| aceptada

Respondida
Can I generate a menu of choices with a dialogue box that allows more than one of the options to be selected?
uicontrol('Style','listbox',... 'Units','normalized',... 'Position',[0.1 0.1 0.3 0.5],... 'St...

alrededor de 13 años hace | 0

Respondida
i am using simulink and stateflow , but facing a regular error "Unable to locate 'mexopts.bat', and therefore cannot determine which compiler to use for simulation builds. Use 'mex -setup' to select a supported compiler." how to resolve it ?
You need to install and set up a supported compiler using: mex -setup <http://www.mathworks.com/help/releases/R2013a/mat...

alrededor de 13 años hace | 0

| aceptada

Respondida
How to slide m by n overlapped blocks by incrementing the row and column coordinates 20 pixels righ and down by using nlfilter?
Why not just use |blockproc| which is designed for this? doc blockproc

alrededor de 13 años hace | 0

Respondida
Error:Undefined function or method 'gpuArray' for input arguments of type 'uint8'
gpuArray and GPU support was released in R2010b. If your company/university's SMS subscription is up to date, you can download ...

alrededor de 13 años hace | 3

Respondida
How to display an error message with Try/catch?
Instead of using a try/catch, inside of the callback for the edit box where they enter the number figure out if the value they h...

alrededor de 13 años hace | 0

| aceptada

Respondida
I want to create sub folders
doc mkdir ?

alrededor de 13 años hace | 0

Respondida
MATLAB freezing right after opening on Mac OS X
<http://www.mathworks.com/matlabcentral/answers/79530#answer_89808>

alrededor de 13 años hace | 1

| aceptada

Respondida
Relabel ROIs in a circular pattern
* Use |bwconncomp()| instead of |bwlabvel|. * The will return a Connected Components structure with the field _'PixelIdxList'...

alrededor de 13 años hace | 0

| aceptada

Respondida
standard deviation of two elements of a 3d matrix
Sounds like you want to _squeeze_ it! squeeze(std(rand(60,30,45),0,2))

alrededor de 13 años hace | 0

Respondida
If then question, data between a range of numbers, send an email?
x = rand(100,1)*2120; if any( x > 2100 | x < 0) sendmail() % doc sendmail for more info else disp('All in...

alrededor de 13 años hace | 0

| aceptada

Respondida
How to speed up OpenGL rendering?
Downsample! Downsampling just a little bit in each dimension will save tons of time.

alrededor de 13 años hace | 0

Respondida
how can I use warp
doc imwarp ?

alrededor de 13 años hace | 0

| aceptada

Respondida
How to add a 'colorbar' and set 'clim' to a colour image overlaid on a grey level image?
I asked the same thing a few years ago :) <http://www.mathworks.com/matlabcentral/answers/11695-how-to-show-a-colorbar-of-a-c...

alrededor de 13 años hace | 1

| aceptada

Respondida
"Formalize" an app to commercialize it
Test it! Seriously... Test it with different uses on different platforms. Verify that it works on any release that you clai...

alrededor de 13 años hace | 0

Respondida
winsound not working in MATLAB 64 bit version for reading/writing from/to the sound card
Perhaps: <http://www.mathworks.com/help/releases/R2013a/dsp/ref/dsp.audiorecorderclass.html>

alrededor de 13 años hace | 0

Respondida
why I can't use "linalg::substitute" in R2013a?
linalg::substitute(aaas,aaaf,1,1) Is a MuPAD command. You'll have to run it from within MuPAD. To Open MuPAD, either run ...

alrededor de 13 años hace | 0

Respondida
Storing data in RAM?
doc persistent ?

alrededor de 13 años hace | 2

| aceptada

Respondida
Variable classification in Parfor loop
rt = 3; xo = pi; no = 2; name = 'Sean'; masterData=cell(20,4); parfor i=1:20 %analysis here. Yields rt, xo, no ...

alrededor de 13 años hace | 1

| aceptada

Respondida
How to limit input formats in an edit text box?
Why not just use a popupmenu? uicontrol('style','popupmenu','string',{'0.5','3.14','1.6'})

alrededor de 13 años hace | 0

Respondida
Measurement in Images - Image Analysis
Kev, I think you would benefit a lot from the Vessel Tortuosity part of this webinar: <https://www.mathworks.com/company/e...

alrededor de 13 años hace | 0

Respondida
How to make a log plot with a graph?
imagesc(magic(1000)); set(gca,'XScale','log'); You can set the _'YScale'_ to log as well if you need to.

alrededor de 13 años hace | 0

Respondida
MATLAB 2012b is Mostly Non-Responsive (OS X-latest)
<http://www.mathworks.com/matlabcentral/answers/79530#answer_89808> Perhaps?

alrededor de 13 años hace | 0

| aceptada

Respondida
Function to pull 110 years of data from .nc files?
<http://www.mathworks.com/matlabcentral/answers/57446>

alrededor de 13 años hace | 1

Respondida
Why is GUIDE not allowing me to have one (1) column and three (3) rows in my table? It seems as if the default table is 4 x 2
In the table's _createFcn_ add the following line: set(handles.table1,'Data',cell(3,1)); Where _table1_ is the _'Tag'_ ...

alrededor de 13 años hace | 0

| aceptada

Respondida
have a figure slide under another
I don't really understand why you would want to do this, but here you go: *Updated* function moveFigureElegantly ...

alrededor de 13 años hace | 0

| aceptada

Respondida
toolboxes mapping in matlab
<http://www.mathworks.com/help/releases/R2013a/map/standard-file-formats.html>

alrededor de 13 años hace | 0

| aceptada

Respondida
Java 10.6 Update 16 issue on OsX 10.6
This issue is due to a bug in the Java security updates that Apple released for Mac OS X (as mentioned above). These updates ins...

alrededor de 13 años hace | 1

Respondida
Parsing or regexp HTML output from urlread
<http://www.mathworks.com/matlabcentral/fileexchange/28518-xml2struct FEX:xml2struct>

alrededor de 13 años hace | 0

Respondida
How to choose an appropriate value for isovalue?
1) The isovalue is essentially the contour value or threshold that you wish to impose. To select one, you need to look at your...

alrededor de 13 años hace | 1

Cargar más