Community Profile

photo

Rohit Garud


Last seen: 대략 1년 전 2016년부터 활동

Followers: 0   Following: 0

통계

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

3년 초과 전 | 0

답변 있음
Numerical derivative in matlab
You can use the gradient() function in newer versions of matlab dy_by_dt = gradient(y(:)) ./ gradient(t(:))

3년 초과 전 | 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(:))

3년 초과 전 | 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...

3년 초과 전 | 1