photo

Rohit Garud


Last seen: 2년 초과 전 2016년부터 활동

Followers: 0   Following: 0

통계

All
MATLAB Answers

0 질문
4 답변

Cody

0 문제
95 답안

순위
5,012
of 300,381

평판
10

참여
0 질문
4 답변

답변 채택
0.00%

획득한 표
5

순위
 of 20,941

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
7,269
of 168,477

참여
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년 전 | 0

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

대략 5년 전 | 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년 전 | 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년 전 | 1