Sumeet Singh
Followers: 0 Following: 0
Statistics
0 Questions
9 Answers
RANK
2,635
of 295,467
REPUTATION
22
CONTRIBUTIONS
0 Questions
9 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
3
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,912
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
Feeds
Develop an algorithm to detect and localize edges based on computed magnitude in part b. Use threshold to be equal to 120
% I -> image, nd -> noise density J = imnoise(I,'salt & pepper',nd); Refer imnoise documentation for more information.
4 years ago | 0
how can i write a code
You can try this for alpha=0:180 for u=0:255 for v=0:255 rho = u*cos(alpha) + v*sin(alpha) ...
4 years ago | 0
Toolbox example code dont work ?
Comment out the code at line 11 of helperLoadData.m t(:,end) = []; %Discard last column of loaded data as all are empty ''
4 years ago | 0
| accepted
Group array in a cell according to their size
You can use one containers.Map to group same sized arrays and another for storing the indices.
4 years ago | 0
How to make an if condition where strings are involved?
if ~ismember(letter,alphabet) fprintf('%d is not a letter\n',letter) end You can't use operator '~=' for oper...
4 years ago | 1
Find the value of a
First, create symbolic variables using syms. Then, define all the equations and find value of desired variable using solve.
4 years ago | 0
Peak detection in a Filled area 2-D plot
You can use findpeaks, available in Signal Processing Toolbox to find local maxima.
4 years ago | 1
i have downloaded the "trial version" but still it asking for the activation key.so,from where i can get it.......
The trial version gives you license to use it for 30 days. Trial licence use Mathworks Hosted Licence Server to execute, so you'...
4 years ago | 0
| accepted
how to add special character in label of app designer
You may copy the symbol from Copyright symbol's Wikipedia <https://en.m.wikipedia.org/wiki/Copyright_symbol page>.
4 years ago | 1
| accepted