Réponse apportée
How can I know which ditribution is appropriate to fit on the generated histogram? and, How can I do that?
I agree with @Star Strider and @the cyclist -- if you can't use the actual distribution and must use a formula, you should use o...

presque 3 ans il y a | 0

Discussion


The new release is here!
(Sorry - it should be 2023b by now.)

presque 3 ans il y a | 4

Réponse apportée
How to make a random circularly-symmetric gaussian distributed additive noise component with mean 0 and variance (sigma^2)/2?
Not exactly sure what you want, but how about this: g = fspecial("gaussian", 201, 40); % Create Gaussian intensity pattern. im...

presque 3 ans il y a | 0

Réponse apportée
Interpreting the output of regionprops function
Try this: % Measure properties of all the individual blobs in the image. props = regionprops(mask, 'MajorAxisLength', 'MinorAx...

presque 3 ans il y a | 0

| A accepté

Réponse apportée
Where can I download the data in excel which is used in MATLAB for example patients.mat etc
On my computer it is here: C:\Program Files\MATLAB\R2023b\toolbox\matlab\demos\patients.mat

presque 3 ans il y a | 0

Réponse apportée
For-loop finding the difference between 7 different arrays
You can't loop it since you chose to have separately named 1-D arrays so you can just do it in 7 lines: A(:,1) = t1(:,1)-tref(:...

presque 3 ans il y a | 0

Réponse apportée
How to trace the minimum and maximum lines of the image of the moiré franges?
To see published algorithms on the topic, see 9.5.3 Optical Interferometry, Moire Patterns https://www.visionbib.com/bibliogra...

presque 3 ans il y a | 0

Réponse apportée
Can I gray out the UIAxes?
To change just about anything you can think of on a graph see the attached demo.

presque 3 ans il y a | 0

Réponse apportée
Matlab function gives 'ans=0' answer problem
Evidently you never took the training onramp course. John gave an excellent explanation. To learn other fundamental yet essent...

presque 3 ans il y a | 0

Réponse apportée
Function definition are not supported in this context. Functions can only be created as local or nested functions in code files.(clarification and application?)
Try this as the first line to declare the function: function status = celldestiny2(A,i,j) To learn other fundamental concepts,...

presque 3 ans il y a | 0

Réponse apportée
Surface roughness determined from a depth map.
Looks like youi're assuming that your brightness corresponds to depth. Assuming that's true there are several definitions of ro...

presque 3 ans il y a | 1

| A accepté

Réponse apportée
I lost my computer where my matlab R2019b was installed
See the FAQ: https://matlab.fandom.com/wiki/FAQ#How_do_I_release_or_deactivate_a_MATLAB_license? Lots of other good stuff in t...

presque 3 ans il y a | 0

Réponse apportée
Error Message: Undefined function 'BME3202M2F' for input arguments of type 'char'.
It works for me. Watch: gain1 = 1000; gain2 = 1000; % 9 uA [ AI0Centered9, AI1Centered9, time9 ] = BME3202M2F('exp2.1(9).cs...

presque 3 ans il y a | 0

Réponse apportée
Removing Noise in Image
What do we know about the circular/elliptical shape? Is it always partially outside the image? Do the streaks always emanate f...

presque 3 ans il y a | 0

Réponse apportée
Using different line style, colour, and legend
Looks like you know how to use MATLAB. About all I might offer is to use the 'Color' option in plot to specify specific colors....

presque 3 ans il y a | 0

| A accepté

Réponse apportée
Aline images using reference markers
help cpselect help imregister

presque 3 ans il y a | 0

| A accepté

Réponse apportée
matlab invalid expression error
Tons of errors. I got tired of fixing them all, but I got this far in your script. You can continue to fix them one at a time ...

presque 3 ans il y a | 1

| A accepté

Réponse apportée
How to remove border from figure
Use exportgraphics to save the current, or designated, axes as a PNG image file: exportgraphics(gca, 'Figure 2.png'); If you o...

presque 3 ans il y a | 0

Réponse apportée
how to extract binary images
You can use drawfreehand to hand trace around all the blobs you want to retain. See attached freehand_masking_demo.m. I've atta...

presque 3 ans il y a | 0

Réponse apportée
How to eliminate delays in drawing a graph during modeling in Simulink, in a dashboard?
I don't know Simulink, but it MATLAB you'd call drawnow; to force an immediate update/refresh of the screen and plots.

presque 3 ans il y a | 0

Réponse apportée
finding min and max values from a file
Try this. It loops over all files and finds the min and max displacement of each file, along with the times that those extrema ...

presque 3 ans il y a | 1

Réponse apportée
Finding area, average and moments of parts of a segmented image
See my Image Segmentation Tutorial in my File Exchange: Image Analyst's File Exchange It's a generic, general purpose demo of ...

presque 3 ans il y a | 0

Réponse apportée
reverse of bwmorph(BW, 'skel' )
I don't believe the other answer will maintain separation of the pieces you split apart. It looks like it will merge them toget...

presque 3 ans il y a | 0

Réponse apportée
Index in position 1 is invalid. Array indices must be positive integers or logical values. "Ideas of fractal fractional using exponential kernel"
Why do you have this: k=1:j; ??? so then k is a vector but then you use it as an index with a scalar when referencing ...

presque 3 ans il y a | 0

Réponse apportée
Help in plotting a graph
Try this: numPoints = 1000; x = linspace(0.03, 0.09, numPoints); y = linspace(15, -10, numPoints); plot(x, -12*ones(numPoint...

presque 3 ans il y a | 0

Réponse apportée
i have detected a object in a scene image , now i want to find centroid coordinates of this object in a whole image . How do i get this ?
See my Image Segmentation Tutorial in my File Exchange: Image Analyst's File Exchange It's a generic, general purpose demo of ...

presque 3 ans il y a | 0

Réponse apportée
Is it possible to programmatically get a list of all file dependencies included in my standalone application (Matlab Compiler )
I use my attached function. Obviously it only finds functions called by your functions. Even if you hard coded some filename i...

presque 3 ans il y a | 0

Réponse apportée
How can I plot columnar grains?
Perhaps the Volume Viewer app on the Apps tab of the tool ribbon.

presque 3 ans il y a | 0

Réponse apportée
Importing multiple files using a loop
See the FAQ document for code snippets: https://matlab.fandom.com/wiki/FAQ#How_can_I_process_a_sequence_of_files?

presque 3 ans il y a | 0

Réponse apportée
Skipping iteration on child throwing a warning
You can use try catch: for k = 1 : 200 try % In the try block put the code that might throw an error. catch ...

presque 3 ans il y a | 0

Charger plus