Discussion


The MATLABIST
(From "The Exorcist" movie poster)

presque 3 ans il y a | 0

Discussion


Albert Einstein uses MATLAB
Albert Einstein uses MATLAB

presque 3 ans il y a | 2

Discussion


Dynamic Field Name shaming
Dynamic Field Name shaming

presque 3 ans il y a | 1

Discussion


Dog shaming
We told you "NO!!!"

presque 3 ans il y a | 1

Discussion


I climbed the L-Shaped Peak
I climbed the L-Shaped Peak

presque 3 ans il y a | 1

Discussion


Choose your weapon
Choose your weapon

presque 3 ans il y a | 4

Discussion


ChatGPT has Fallen
ChatGPT has Fallen.

presque 3 ans il y a | 3

Discussion


There is always someone who will charge you less.
MATLAB vs. Python

presque 3 ans il y a | 1

Discussion


Caution. This is MATLAB.
Caution. This is MATLAB.

presque 3 ans il y a | 1

Discussion


MATLAB is the best programming language
MATLAB is the best programming language

presque 3 ans il y a | 3

Discussion


I think this is the beginning of a beautiful friendship.
Casablanca

presque 3 ans il y a | 1

Discussion


MATLABlypse Now
I love the smell of debugged MATLAB code in the morning. Smells like...Victory!

presque 3 ans il y a | 1

Réponse apportée
Converting 3D matrix to 2D matrix image
Try these two code snippets. The first one gives you a grayscale image, regardless of what's in the file. originalImage = imre...

presque 3 ans il y a | 1

Réponse apportée
Is there a method to capire similarity between two images?
See https://en.wikipedia.org/wiki/Content-based_image_retrieval#Content_comparison_using_image_distance_measures In MATLAB, you...

presque 3 ans il y a | 0

Réponse apportée
How to change the scale of color bar to discrete ?
Try this. Adapt as needed: % Read in sample image. grayImage = mat2gray(imread('cameraman.tif')); % Make a colormap with 10 ...

presque 3 ans il y a | 0

Réponse apportée
Polynomial fit of a wavefront profile
I'm not familiar with that optical technique. Is a "wavefront gradient profile" the same as a "wavefront profile"? You refer t...

presque 3 ans il y a | 0

Réponse apportée
I WANT TO EXTEND MY X-AXIS
Not sure what you want. I'm guessing it's either repmat or xlim

presque 3 ans il y a | 0

Réponse apportée
I am plotting streamflows on a drainage map for a region. I want to make the lines thicker and more evident in the image shown. Any suggestions on how to make that possible?
With many plotting/graphics functions there is a 'LineWidth' option. Look for that.

presque 3 ans il y a | 0

Réponse apportée
Getting average for a range of data on a plot. Not entire range, only for a section.
"I just need the mean value of all the values at steady state." <== So use histogram or histcounts.

presque 3 ans il y a | 0

Réponse apportée
Function output does not get recocnized
When you click Start, this code runs: % Value changed function: StartButton function StartButtonValueChanged(app, event) ...

presque 3 ans il y a | 0

Réponse apportée
DRAW LINES POINT TO POINT WHITH GINPUT
See attached demos.

presque 3 ans il y a | 0

Réponse apportée
HOW CAN I DRAW POINTS WHIT GINPUT AND THEN JOIN THEM WITH A LINE
See attached demo.

presque 3 ans il y a | 0

Réponse apportée
HOW CAN I CREATE REFERENCE AXES ON A 2D PLANE THAT ALLOWS ME TO DRAW AT THE INTERSECTIONS OF SUCH AXES?
Perhaps put the tick marks at the origin? ax = gca ax.XAxisLocation = 'origin'; ax.YAxisLocation = 'origin';

presque 3 ans il y a | 0

Réponse apportée
how to export image classification results in excel sheet
Exactly what results do you want to export? Screenshot please. If you have it in a variable, you can use writetable or writece...

presque 3 ans il y a | 0

Réponse apportée
Regionprops handling of big images
How big is your bs.data binary image? I would start by trying to delete any variables the in workspace that you don't need anym...

presque 3 ans il y a | 1

Réponse apportée
I can't find the ranova function
You probably don't have a license for it because I see that function should be in that toolbox since 2014. What happens if you ...

presque 3 ans il y a | 1

| A accepté

Réponse apportée
Create mesh from matrix
Not sure what you mean by "plot" but to view a and b as 2-D images and 2.5-D surface plots: subplot(2, 2, 1); imshow(a, []); ...

presque 3 ans il y a | 0

Réponse apportée
How to plot a "Bean-shaped" object in MatLab please? (preferably a parametric equation)
Isn't this a duplicate of your question that I answered here: https://www.mathworks.com/matlabcentral/answers/2032129-how-to-cre...

presque 3 ans il y a | 0

Réponse apportée
User input to repeat a script
Try questdlg while (1) % Put script code here. % Now ask use if they want to do it again. promptMessage = ...

presque 3 ans il y a | 0

Réponse apportée
How to create this "bean shape" in MatLab please?
Try this: t = linspace(0, 2*pi, 1000); x = 3 + 2 * sin(t) + cos(2 * t); y = 4 * cos(t) - sin(2*t); plot(x, y, 'b-', 'LineWid...

presque 3 ans il y a | 1

| A accepté

Charger plus