photo

Surabhi KS


Last seen: 7 months ago Active since 2021

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
5 Answers

RANK
10,337
of 300,365

REPUTATION
4

CONTRIBUTIONS
0 Questions
5 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 20,933

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,262

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Answered
not enough input arguments
You need to call your function with the appropriate variables. Call odDetect with its defined variables for example: I = imrea...

4 years ago | 0

Answered
Convert a uint16 into values into RGB
If you have an image I that is uint 16 you could try this to convert it to RGB: I = mat2gray(I); IRGB = cat(3, I, I, I); imsh...

4 years ago | 0

| accepted

Answered
similar to gaussian filter for color
You could try this: Threshold the image to obtain the red rectangle, locate the center through centroid detection and define a ...

4 years ago | 0

Answered
Merge two plots into one, with the same color
You can specify the color of the plot in your loop. for i=0:50 plot(wavelenght+wavelenght2,integratedvalue+integratedvalue...

4 years ago | 0

Answered
Use these values and Matlab to find the sum of the 161st and 271st values of x
This is basic MATLAB, the key is to understand how MATLAB works. In order to access say the element of an array X, you call it ...

4 years ago | 0