Rohit Garud
Followers: 0 Following: 0
Statistics
All
RANK
4,941
of 295,448
REPUTATION
10
CONTRIBUTIONS
0 Questions
4 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
5
RANK
of 20,227
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Answered
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...
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...
4 years ago | 0
Answered
Numerical derivative in matlab
You can use the gradient() function in newer versions of matlab dy_by_dt = gradient(y(:)) ./ gradient(t(:))
Numerical derivative in matlab
You can use the gradient() function in newer versions of matlab dy_by_dt = gradient(y(:)) ./ gradient(t(:))
4 years ago | 2
Answered
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(:))
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(:))
4 years ago | 2
Answered
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...
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...
4 years ago | 1