photo

Rohit Garud


Last seen: 2 years 前 自 2016 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

0 个提问
4 个回答

Cody

0 个问题
95 个答案

排名
4,941
of 299,772

声誉
10

贡献数
0 个提问
4 个回答

回答接受率
0.00%

收到投票数
5

排名
 of 20,801

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
7,143
of 165,865

贡献数
0 个问题
95 个答案

评分
970

徽章数量
4

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Explorer
  • First Answer
  • Revival Level 1
  • CUP Challenge Master
  • Commenter
  • Promoter
  • Solver

查看徽章

Feeds

排序方式:

已回答
How can I convert a multi objective optimization algorithm to a single objective one by using The weighting method ?
If J is your combined cost function and w1 and w2 are your weights then, J = w1*(M-f1) + w2*(f2) Here M is a large number whic...

5 years 前 | 0

已回答
Numerical derivative in matlab
You can use the gradient() function in newer versions of matlab dy_by_dt = gradient(y(:)) ./ gradient(t(:))

5 years 前 | 2

已回答
How to properly take derivative of discrete data ?
You can use the gradient() function in newer versions of matlab dy_by_dx = gradient(y(:)) ./ gradient(x(:))

5 years 前 | 2

已回答
Take 1st and 2nd Derivative of Data Points
You can use the gradient() function data_first_d = gradient(data_out(:)) ./ gradient(t(:)) data_second_d = gradient(data_first...

5 years 前 | 1