Sumeet Singh - MATLAB Central
photo

Sumeet Singh


Last seen: 4 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB AnswersFrom 06/20 to 04/25Use left and right arrows to move selectionFrom 06/20Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 个提问
9 个回答

排名
2,670
of 298,046

声誉
22

贡献数
0 个提问
9 个回答

回答接受率
0.00%

收到投票数
3

排名
 of 20,526

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 160,226

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer

查看徽章

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.

5 years 前 | 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) ...

5 years 前 | 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 ''

5 years 前 | 0

| 已接受

已回答
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.

5 years 前 | 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...

5 years 前 | 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.

5 years 前 | 0

已回答
Peak detection in a Filled area 2-D plot
You can use findpeaks, available in Signal Processing Toolbox to find local maxima.

5 years 前 | 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'...

5 years 前 | 0

| 已接受

已回答
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>.

5 years 前 | 1

| 已接受