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

fast 13 Jahre vor | 0

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

fast 13 Jahre vor | 0

| akzeptiert

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

fast 13 Jahre vor | 0

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

fast 13 Jahre vor | 0

| akzeptiert

Gelöst


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

fast 13 Jahre vor

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

fast 13 Jahre vor | 0

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

fast 13 Jahre vor | 1

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

fast 13 Jahre vor | 1

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

fast 13 Jahre vor | 1

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

fast 13 Jahre vor | 0

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

fast 13 Jahre vor | 0

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

fast 13 Jahre vor | 1

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

fast 13 Jahre vor | 0

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

fast 13 Jahre vor | 0

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

fast 13 Jahre vor | 0

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

fast 13 Jahre vor | 1

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

fast 13 Jahre vor | 1

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

fast 13 Jahre vor | 0

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

fast 13 Jahre vor | 0

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

fast 13 Jahre vor | 0

| akzeptiert

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

etwa 13 Jahre vor | 0

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

etwa 13 Jahre vor | 1

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

etwa 13 Jahre vor | 0

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

etwa 13 Jahre vor | 0

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

etwa 13 Jahre vor | 0

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

etwa 13 Jahre vor | 1

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

etwa 13 Jahre vor | 0

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

etwa 13 Jahre vor | 1

| akzeptiert

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

etwa 13 Jahre vor | 0

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

etwa 13 Jahre vor | 0

Mehr laden