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

más de 3 años hace | 1

| aceptada

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

más de 3 años hace | 0

| aceptada

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

más de 3 años hace | 0

Respondida
install R2023a
See the FAQ: https://matlab.fandom.com/wiki/FAQ#During_installation,_the_installer_crashes,_hangs,_gives_an_error_message,_does...

más de 3 años hace | 0

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

más de 3 años hace | 0

| aceptada

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

más de 3 años hace | 0

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

más de 3 años hace | 0

| aceptada

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

más de 3 años hace | 0

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

más de 3 años hace | 0

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

más de 3 años hace | 0

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

más de 3 años hace | 1

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

más de 3 años hace | 1

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

más de 3 años hace | 0

| aceptada

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

más de 3 años hace | 0

| aceptada

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

más de 3 años hace | 0

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

más de 3 años hace | 0

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

más de 3 años hace | 0

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

más de 3 años hace | 0

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

más de 3 años hace | 0

Respondida
MathWorks License Update Required
Did you do what the error message said? Contact your university administrator?

más de 3 años hace | 0

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

más de 3 años hace | 0

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

más de 3 años hace | 0

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

más de 3 años hace | 0

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

más de 3 años hace | 0

| aceptada

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

más de 3 años hace | 1

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

más de 3 años hace | 0

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

más de 3 años hace | 0

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

más de 3 años hace | 0

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

más de 3 años hace | 0

Respondida
Classification leaner does not recognize the request variable(var4 )as response data.
If you have any more questions, then attach your data (your training table of predictors) and code to read it in with the paperc...

más de 3 años hace | 0

Cargar más