photo

Rohit Garud


Last seen: mehr als ein Jahr vor Aktiv seit 2016

Followers: 0   Following: 0

Statistik

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

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
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...

etwa 4 Jahre vor | 0

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

mehr als 4 Jahre vor | 2

Beantwortet
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(:))

mehr als 4 Jahre vor | 2

Beantwortet
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...

mehr als 4 Jahre vor | 1