문제를 풀었습니다


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

5년 초과 전

문제를 풀었습니다


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

5년 초과 전

답변 있음
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...

5년 초과 전 | 0

답변 있음
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,...

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 0

답변 있음
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

5년 초과 전 | 0

문제를 풀었습니다


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

5년 초과 전

문제를 풀었습니다


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

5년 초과 전

답변 있음
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...

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 0

답변 있음
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 ...

5년 초과 전 | 1

답변 있음
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...

5년 초과 전 | 0

| 수락됨

답변 있음
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...

5년 초과 전 | 1

| 수락됨

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

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 0

답변 있음
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 ...

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 0

| 수락됨

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

5년 초과 전 | 0

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

5년 초과 전 | 0

| 수락됨

답변 있음
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...

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 0

답변 있음
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('...

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 0

| 수락됨

답변 있음
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] ...

5년 초과 전 | 0

| 수락됨

답변 있음
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.

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 0

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

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 1

답변 있음
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...

5년 초과 전 | 0

더 보기