Réponse apportée
the username and password?
Ask your professor how to do it, or another student who has done it successfully. If that doesn't work, see the FAQ: https://m...

presque 2 ans il y a | 0

Réponse apportée
I need to innovatively produce a 140x8 matrix filled with random grades from 140 students
Not sure what qualifies as "innovative" but how about making a matrix of all prime numbers, rescaled? % Get a list of 8*140 pri...

presque 2 ans il y a | 0

Réponse apportée
Projection of satellite image
Try the Registration Estimator app on the Apps tab of the tool ribbon. I haven't used it but with most or all apps, you can exp...

presque 2 ans il y a | 0

Réponse apportée
MATLAB Plots *.tif According to Light
This is what I got so far: % Initialization steps. clc; % Clear the command window. close all; % Close all figures (excep...

presque 2 ans il y a | 1

| A accepté

Réponse apportée
choose random places on matrix
Simply use randperm and linear indexing. No need to figure out or convert locations to (row, column) indexes (that's a waste of...

presque 2 ans il y a | 0

Réponse apportée
Working in Excel with live on MATLAB
You can interact with Excel "live" if you are using Windows and use ActiveX. I attach a demo for that, ExcelDemo. You can stop...

presque 2 ans il y a | 0

Réponse apportée
Force saved figure to use a specific number of pixels
"I am saving different maps" <== What, like a road map, or an image with different colormaps? "I save my image" ...with "... ex...

presque 2 ans il y a | 0

Réponse apportée
MATLAB Plots *.tif According to Light
In your 3D-ish rendering, where exactly are the shadows? And the yellow spots? Can you point to them with arrows or something?...

presque 2 ans il y a | 0

Réponse apportée
Need help to removing motion (breathing?) artifact from ECG signal
I'm sure it's been done before. Rather than me just guessing, I suggest you search the medical literature in PubMed to find art...

presque 2 ans il y a | 0

Réponse apportée
How to give Gray color histogram gray shade instead of blue
Try using the 'FaceColor' input of histogram. % Create sample data. data = rand(1, 1000); % Define custom color. grayColor ...

presque 2 ans il y a | 0

Réponse apportée
How to change Fontcolor xticks and yticks
Here is a demo that shows you how to change just about everything on a plot: % Demo to make a black graph with red Y axis, gree...

presque 2 ans il y a | 0

Réponse apportée
How to hide console messages for a matlab executable in batch mode
Not sure what things are showing up but if you don't want any then make sure you have semicolons after every line, and don't use...

presque 2 ans il y a | 0

Réponse apportée
Pattern recognition in Robot Vacuum Map
See if this might help: https://www.mathworks.com/help/vision/ug/abandoned-object-detection.html?s_tid=srchtitle_site_search_1_...

presque 2 ans il y a | 0

Réponse apportée
LCD defect detection using matlab
Yes, MATLAB is a great tool for developing image processing apps. It's easy to program in and has a great library of functions ...

presque 2 ans il y a | 0

Réponse apportée
unknown parameters in Radon transform example
"The page you were looking for does not exist. Use the search box or browse topics below to find the page you were looking for."...

presque 2 ans il y a | 0

Réponse apportée
How to do film dosimetry?
You can use imsplit to separate an RGB image into individual component images in one line of code: % Separate RGB image into in...

presque 2 ans il y a | 0

Réponse apportée
Draw first principal component line and regression line on the same scatterplot
It looks like you're doing a simple linear fit. I'm not seeing how you're using pca. It sounds like homework and they want you...

presque 2 ans il y a | 1

Réponse apportée
Trying to understand how imagesc works compared to scatter.
Scatter is an x-y plot where the origin is at the lower left, by convention. And imagesc plots an image (or matrix) where the o...

presque 2 ans il y a | 1

Réponse apportée
Trying to understand why my graphs are all flipped
Maybe try axis ij or axis xy until the graph is in the orientation you want.

presque 2 ans il y a | 0

Réponse apportée
How does the regionprops calculate the area or the eccentricity of an object?
Not sure how I missed your question 5 years ago, but anyway I don't think you'd use hough() anymore. You'd use imfindcircles, t...

presque 2 ans il y a | 0

Réponse apportée
Adjusting color limits on displayed color images
What data type do you have for your indexed image? If it's double, it should be in the range 0-1, and if it's uint8 it should b...

presque 2 ans il y a | 0

Réponse apportée
Measuring average intensity of pixels for multiple images.
There is absolutely no need to store all your images in a cell array or as a 3-D image. See the FAQ for code on how to proces...

presque 2 ans il y a | 0

| A accepté

Réponse apportée
I want to install an MATLAB 2024 Update 6 but it is only showing Update 2 do I have to reinstall?
Try to install the update from the bell icon in the title bar in the upper right. Does your bell have a red dot on it, or not? ...

presque 2 ans il y a | 0

Réponse apportée
Network doesn't work on test image
Make sure your new images are resized to the required size for your model (the same size as your training, validation, and test ...

presque 2 ans il y a | 0

Réponse apportée
Representing an area on a different axis.
To have different data (like area) on a different/additional axis, see yyaxis help yyaxis

presque 2 ans il y a | 1

Réponse apportée
Finding mean value over certain amount of values in a matrix
A = [1,2,3;4,6,8;7,12,7;14,4,23] result = [2.5,4,5.5;10.5,8,15] % Your desired answer r = conv2(A, [1;1]/2, 'valid'); r = r(1...

presque 2 ans il y a | 1

Réponse apportée
How "medfilt1(X,N) filter logic works. How to convert this into embedded c language. please suggest how to do this.
See https://en.wikipedia.org/wiki/Median_filter for a thorough explanation of the median filter. For many MATLAB functions, y...

presque 2 ans il y a | 0

Réponse apportée
How do you track a tip of a pendulium and plot its displacement against time?
It all comes down to extracting one frame at a time and then segmenting that frame and using regionprops to find the centroid. ...

presque 2 ans il y a | 0

Réponse apportée
AI to help with Matlab scripting and Simulink Drawing
See this link: https://www.mathworks.com/matlabcentral/discussions/highlights/851851-introducing-the-revolutionary-preanswer-ai-...

presque 2 ans il y a | 0

Réponse apportée
Attempting to fit data with a sigmoid curve, but not an option in curvefitter toolbox
Attach your actual data so we can work with it. In the meantime, I'm attaching my demo of fitting a sigmoid, though it uses a d...

presque 2 ans il y a | 0

Charger plus