![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/7894231_1522123832149_DEF.jpg)
Rohit Garud
Followers: 0 Following: 0
Estadística
0 Preguntas
4 Respuestas
0 Problemas
95 Soluciones
CLASIFICACIÓN
4.941
of 297.046
REPUTACIÓN
10
CONTRIBUCIONES
0 Preguntas
4 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
5
CLASIFICACIÓN
of 20.422
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
6.635
of 157.776
CONTRIBUCIONES
0 Problemas
95 Soluciones
PUNTUACIÓN
970
NÚMERO DE INSIGNIAS
4
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
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...
más de 4 años hace | 0
Numerical derivative in matlab
You can use the gradient() function in newer versions of matlab dy_by_dt = gradient(y(:)) ./ gradient(t(:))
más de 4 años hace | 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(:))
más de 4 años hace | 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...
más de 4 años hace | 1