Answered
An object with the biggest amount of scope in the Binary image
Good timing, I just posted this function a few minutes ago! <http://www.mathworks.com/matlabcentral/answers/87448#answer_9701...

13 years ago | 0

Answered
Query in segmenting Nodules in LUNG CT
Keep the biggest object that's not touching the border in your third image. Inoborder = imclearborder(Your_Third_Image); I...

13 years ago | 0

| accepted

Answered
Update Matlab Coder with Prerelease 2013b
The MATLAB R2013b general release is out. Please delete the Prerelease and install the general release.

13 years ago | 0

Answered
Change Layout in MatLab 2013b
You can dock and undock every pane by clicking on the down arrow in the upper right corner and arrange the layout by dragging an...

13 years ago | 0

| accepted

Solved


Friday the 13th
According to superstition, lots of unpleasant stuff happens on Friday the 13th, so you might like to find the next occurence of ...

13 years ago

Answered
Global exception handling in a GUI class
I don't think there is a way to redirect from standard error to error dialog. You'll have to catch the MException and then thro...

13 years ago | 0

Answered
Problem with a string .
doc strrep Here it is: str = '''abc "abc" ''' str2 = strrep(strrep(str,'''',''),'"','''')

13 years ago | 1

Answered
Can I use matlab to curve fit/predict market price of a company? I
Do you have the curve fitting toolbox? If so, either click on the curve fitting app in the apps gallery or run: >> cftool ...

13 years ago | 1

Answered
How to find double integral in MATLAB
Running your example I get an error saying the matrix dimensions must agree. Changing the x*y to x.*y inside of |dirac| allows ...

13 years ago | 1

Answered
Working with cells of letters
So: cellfun(@str2double,{{'1','3','34'},{'45'},{'12','1017'}},'uni',false)

13 years ago | 0

Answered
GUI Edit Text value update
Hi Yu, There is a bug in |uipushtool| that it does not first fire the callback of the edit box. There is a workaround that r...

13 years ago | 0

Answered
How do I assign the updated values in a UITable to MATLAB’s base workspace?
Hi Brad, I would take an OOP approach here. For example: h = uitableData(magic(5)) h.data Now make some changes in ...

13 years ago | 1

Answered
Zooming separately on both data sets while using plotyy
<http://www.mathworks.com/help/releases/R2013b/matlab/ref/zoom.html doc zoom> You can use the function |setAllowedAxesZoom| t...

13 years ago | 0

Answered
Problem reading .mov file
Can you open the *.mov file in Windows Media Player or VLC?

13 years ago | 0

Answered
help: efficiently pass a lot of variables to a function
I wouldn't discount your first option so quickly. It'll take a minute or two to write that function signature then from there y...

13 years ago | 0

Answered
R2013b IDE nonsense. The story continues.
Two little things that could help a little: * Shrink the tab width by dragging it over a little bit (while vertical). * Chec...

13 years ago | 1

Answered
How we know what functions/objects are supported by MATLAB Cogenration ?
<http://www.mathworks.com/help/releases/R2013b/coder/functions-supported-for-code-generation.html>

13 years ago | 1

Answered
find the largest value and its index using for loop and if statements
This oughtta do it: myvar=[10 1 3 6 8 3 6 9 3 1 6 9 12 7 5 3 6 8 2 1]; for ii = 1 if ii [max_val,idx] = max(my...

13 years ago | 0

Answered
Add a slider to function in matlab
Why not just use |rotate3d on|? rotate3d on Now you can move it with the mouse. If you're building it in GUIDE then add...

13 years ago | 0

Answered
Matlab Arduino Servo Control
<http://www.mathworks.com/matlabcentral/fileexchange/index?utf8=%E2%9C%93&term=arduino+servo FEX:query:arduino servo>

13 years ago | 0

| accepted

Answered
How can I use parallelized code when converting to a .mex file?
Hi Carlos, I would recommend upgrading to R2013b. A lot of new support for |parfor| was added in this release: <http://ww...

13 years ago | 0

Answered
How do I reduce the run time of this code?
Have you used the profiler to identify the bottlenecks? <http://www.mathworks.com/help/releases/R2013b/matlab/matlab_prog/pro...

13 years ago | 1

Answered
Matlab Installation for Mac Won't Run
Call technical support.

13 years ago | 0

Answered
Properties of user defined classes cannot be seen in variable editor. why? Please look at the picture.
This functionality was added in R2013b. I didn't see it specifically documented in the Release Notes but the changes to how str...

13 years ago | 0

Answered
Can I specify a particular matrix for the colorbar?
It is possible to do what you want by adjusting the _'CData'_ properties of the various graphics objects and the _'YLim'_ proper...

13 years ago | 0

Answered
How can I determine if a directory is on the MATLAB path programmatically?
Parsing the path isn't so bad! This seems like a simple check: if ispc % Windows is not case-sensitive onPath ...

13 years ago | 1

Answered
Constric dataset according to its items value
Use <http://www.mathworks.com/help/releases/R2013b/matlab/math/matrix-indexing.html#bq7egb6-1 logical indexing>: x = randpe...

13 years ago | 0

Answered
Create black line on colorbar to mark specific value
Good Monday morning brain stimulator! % Level we care about level = 0; % Plot and store colorbar handles ...

13 years ago | 1

| accepted

Answered
How to display video in guide
* Use a |pause()| between iterations of your |for|-loop to force it to display for x-amount of time. * If reading a frame takes...

13 years ago | 0

Answered
when will the new licence manager server be available?
Please contact installation support.

13 years ago | 0

Load more