Réponse apportée
Sobel Edge Detection Threshold value single vs uint8 image
I don't know Simulink but Sobel has a fixed filter size that may not scale well with the size/width of the edges in your particu...

plus de 3 ans il y a | 0

Réponse apportée
How to save all the data after processing all the images
Didn't I answer that in your duplicate question? https://www.mathworks.com/matlabcentral/answers/1938859-how-to-save-all-the-im...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
I have a Matrix of colors which have been projected or distorted, and I would like to un-distort it.
Try this: % Demo by Image Analyst to de-warp a quadrilateral into a rectangle. clc; % Clear the command window. close all;...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to find 100 points on a slant plot and draw perpendicular lines through all of those points
Did you try simple geometry and algebra? If you had, you would have gotten something like this: % Define line endpoints. x1 =...

plus de 3 ans il y a | 0

Réponse apportée
install R2023a
See the FAQ: https://matlab.fandom.com/wiki/FAQ#During_installation,_the_installer_crashes,_hangs,_gives_an_error_message,_does...

plus de 3 ans il y a | 0

Réponse apportée
Why do I get Array indices must be positive integers or logical values.
See the FAQ for a thorough discussion: https://matlab.fandom.com/wiki/FAQ#%22Subscript_indices_must_either_be_real_positive_int...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Undefined function or variable 'rangeres2bw'.
What is the URL of the web site? You forgot to tell us. Probably it was defined somewhere on that page and you forgot to copy ...

plus de 3 ans il y a | 0

Réponse apportée
Find only interior points from set of points
Try this: % Demo by Image Analyst separate point sets using the convex hull. clc; % Clear the command window. close all; ...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Array Indices must be positive integers or logical values - problem
See the FAQ for a thorough discussion https://matlab.fandom.com/wiki/FAQ#%22Subscript_indices_must_either_be_real_positive_inte...

plus de 3 ans il y a | 0

Réponse apportée
I'd like to give my graph background color based on a string value
See this demo that let's you change virtually anything about the graph: % Demo to make a black graph with red Y axis, green X a...

plus de 3 ans il y a | 0

Réponse apportée
Color transfer of the source image according to the target image
The best algorithm for gamut transfer is this: http://www.eyemaginary.com/Portfolio/ColorHistogramWarp.html Sorry, I don't hav...

plus de 3 ans il y a | 0

Réponse apportée
how to get files in a folder to a cell format
Try this: % Process a sequence of files. folder = pwd; % Or wherever you want. filePattern = fullfile(folder, '*.mat'); file...

plus de 3 ans il y a | 1

Réponse apportée
Problem in creating executable files using MATLAB.
Like this: if ~isdeployed % Code to run only in the development environment, NOT to run in the compiled version. syms...

plus de 3 ans il y a | 1

Réponse apportée
Need help fixing the color of the lines
Try moving the plot for the line inside the if blocks, like this: % Plot line x = [currentStart currentEnd]; y = currentVar3;...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Extracting Text (Table) from an Image and Exporting Output in Excel File.
The image is so poor. To make a robust program would take more time than just simply typing in the data by hand. I suggest you...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
how to install fractal function in matlab
Make a new folder for it. Then unzip the contents of your zip file to that folder. Then use the Current folder panel to brow...

plus de 3 ans il y a | 0

Réponse apportée
im looking for the error in the following code, please help
See the FAQ for a thorough discussion: https://matlab.fandom.com/wiki/FAQ#%22Subscript_indices_must_either_be_real_positive_int...

plus de 3 ans il y a | 0

Réponse apportée
Fastest way to search files by pattern name
Use contains to see if the pattern is in the folder or file name. Process the ones you want, and skip the ones you don't want b...

plus de 3 ans il y a | 0

Réponse apportée
CONVERTİON 1D FEATURES İNTO 2D RGB İMAGE
Try reshape and imresize to get your data into an image size that is needed for whatever network architecture you choose.

plus de 3 ans il y a | 0

Réponse apportée
I dont understand how to correct this error in line 113
There is a thorough discussion in the FAQ: https://matlab.fandom.com/wiki/FAQ#%22Subscript_indices_must_either_be_real_positive...

plus de 3 ans il y a | 0

Réponse apportée
MathWorks License Update Required
Did you do what the error message said? Contact your university administrator?

plus de 3 ans il y a | 0

Réponse apportée
How do I put spaces before a line in a txt file using strcat and fprintf?
strcat does an automatic trim of spaces. Just use fprintf alone. No need for B or strcat. % Have a line with spaces on it be...

plus de 3 ans il y a | 0

Réponse apportée
- Perform the calculation of the remaining source activity at time t when the "calculate" button is pressed.
This looks like a homework problem. If you have any questions ask your instructor or read the link below to get started: How d...

plus de 3 ans il y a | 0

Réponse apportée
Trying to plot graphs but Matlab stops responding and won't run the program
Where does it stop? Have you tried stepping through it a line at a time? Debugging in MATLAB | Doug's MATLAB Video Tutorials ...

plus de 3 ans il y a | 0

Réponse apportée
- Perform the calculation of the remaining source activity at time t when the "calculate" button is pressed.
Try this: https://www.mathworks.com/products/matlab/app-designer.html To learn other fundamental concepts, invest 2 hours of y...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to combine multiple true color images into a composite image?
See the attached published article on how to combine various wavelength bands into a visible RGB image.

plus de 3 ans il y a | 1

Réponse apportée
For loop and calculating at each interval of t
Put the theta into a vector and then use them in the loop to build dhparams: theta = -3 + 6 * rand(1, 26); % Whatever they are....

plus de 3 ans il y a | 0

Réponse apportée
Finding random normally distributed number above zero
You could just throw away any less than zero: r = stDev * randn(100000, 1) + desiredMeanValue; r(r<=0) = []; % Or equivalentl...

plus de 3 ans il y a | 0

Réponse apportée
Unable to perform assignment because value of type 'sym' is not convertible to 'double'.
Are you 100% sure you need symbolic variables? Why can't you do it numerically with regular double variables? Try it.

plus de 3 ans il y a | 0

Réponse apportée
How find a word in vector of words?
Try this: wordList = {'shoemoney' 'devices' 'mcburnett' 'gdri' 'ezralevant' 'Winston80' 'danielle...

plus de 3 ans il y a | 0

Charger plus