Gelöst


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...

mehr als 5 Jahre vor

Gelöst


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

mehr als 5 Jahre vor

Beantwortet
Error "Index in position 2 exceeds array bounds (must not exceed 1)."
Problem due to typo error (Note MATLAB is case sensitive). The preallocated variable named as Vxai, Vyai (upper case V), later u...

mehr als 5 Jahre vor | 0

Beantwortet
calculate multi-level DWT of an image
"the numbers should be between 0-255" No, pixel values ​​depend on the data types, the original image probably uint8 data type,...

mehr als 5 Jahre vor | 0

Beantwortet
Plot Receiver Operating Characteristics (ROC) curve from a given probability distribution of an input variable
Hint: Define rupture time (asssuming vector data) t= Define other Known Parameters k= F= d= Kb= T= Calculate P(t), w...

mehr als 5 Jahre vor | 0

Beantwortet
How do I obtain smoothen the linesin my graph and make it all look less sharp?
smooth https://in.mathworks.com/help/curvefit/smooth.html

mehr als 5 Jahre vor | 0

Gelöst


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

mehr als 5 Jahre vor

Gelöst


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

mehr als 5 Jahre vor

Beantwortet
display value if it lies between x and y
Try with single "&" Note "x_array{b}>ymin" or "x_array{b}<ymax" return logical array data. If all the array elements of the ar...

mehr als 5 Jahre vor | 0

Beantwortet
How to run nested loop (from 1 to mean value) & (from mean value to last value) of an image?
Is this? mean_val=mean2(grayImage); Image_I1=grayImage(grayImage>mean_val); Image_I2=grayImage(grayImage<=mean_val); subplot...

mehr als 5 Jahre vor | 0

Beantwortet
How to extract value at a given time in ode 45
Hope I have understood your question, if not, please do not hesitate to correct me. Lets understand with an example, say t as ...

mehr als 5 Jahre vor | 1

Beantwortet
Images segmentation methods in MATLAB
As the region of interest is clearly distinct, you can directly obtain the results by binarization of the input image. You may h...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Newton's Law of Cooling Euler's method, don't understand how it works in matlab
As you have tried, so sufficient Hint here dt=0.5; T_amb=10; t=0:dt:5; % Check T=zeros(1,length(t)); T(1)=37; k=0.12; fo...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
image segmentation using ANN MATLAB Code
Here, Semantic Segmentation of Multispectral Images Using Deep Learning https://in.mathworks.com/help/images/multispectral-sema...

mehr als 5 Jahre vor | 0

Beantwortet
How to put a shape on top of an image?
You may try with imfuse https://in.mathworks.com/help/images/ref/imfuse.html or Image Overlay Using Transparency https://in.m...

mehr als 5 Jahre vor | 0

Beantwortet
How to save last three values from for loop?
Save the loop results in array (if scalar data) or in cell arary (in vector results) are good ways to handle the data. From the ...

mehr als 5 Jahre vor | 0

Beantwortet
I want to remove background in the given image.
As the color of ROIs is quite clear, you can try to get a range of red pixels with different color models. Please note, the defi...

mehr als 5 Jahre vor | 0

Beantwortet
Finding coordinates From image
You have do little effort to localize the eye section in the image. You may use imfindcircles function (Read about CHT Image Pro...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How to verify SNR of a signal after using the awgn function
SNR https://in.mathworks.com/help/signal/ref/snr.html

mehr als 5 Jahre vor | 0

Beantwortet
need help for plotting of data
>> whos T Name Size Bytes Class Attributes T 10x10x10 8000 double He...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Is there a best way to identify anomalous peaks in signals and remove them?
"identify anomalous peaks in signals and remove them?" You can do this in many ways, it depends on you and your exact needs. Bu...

mehr als 5 Jahre vor | 0

Beantwortet
video camera data processing
Convert the video in series of images (frames) Here https://in.mathworks.com/matlabcentral/answers/31845-convert-avi-file-to-s...

mehr als 5 Jahre vor | 0

Beantwortet
store user input in an array
user_input=zeros(1,10); n=1; while n<=10 user_input(n)=input('Enter positive real number : '); n=n+1; end fprintf('...

mehr als 5 Jahre vor | 0

Beantwortet
How can I generate random numbers
"I want a2 should generate one randon no, a1 should generate one random no and then a new range should form and i should be able...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Correlation using for loop
Problem, you are trying to access the rows to 7400, but the rows in M _ET [3700 12] have a maximum of 3700, as M_ET [3700 12] ...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Only the real part of the complex number is displayed and not the imaginary part
You have to run the code (Click on the green triangular button) to execute eig function.

mehr als 5 Jahre vor | 0

Beantwortet
Vertical line for building detection
You can do the thresholding or oher image suitable segmentation approach to get the ROI, (preferbly vertical). In that case, you...

mehr als 5 Jahre vor | 0

Beantwortet
Cepstrum analysis in image processing
Steps: Red the image (imread) Covert Gray Scale Image (rgb2gray) Add Noise (imnoise) Filter the Noisy Image (imfilter) Comp...

mehr als 5 Jahre vor | 0

Beantwortet
I have a 3D matrix, how to do clustering of this matrix?
Whether dimention affects clustering results, I think no, assigns different clusters values to the categories. You may apply the...

mehr als 5 Jahre vor | 1

Beantwortet
how to find coin value in an image using matlab
Steps: "I need to find the value of a coin in the image" Preprocessing (If required) Segmentation (ROI) Apply Sort of Morpho...

mehr als 5 Jahre vor | 0

Mehr laden