photo

Revant Adlakha


Last seen: alrededor de 1 año hace Con actividad desde 2020

Followers: 0   Following: 0

Estadística

All
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
How to find the index of the closest value to some number in 1D array ?
You could also use something like this, where f(x) is the function and x is the value of interest. ind = find(min(abs(f(x) - x)...

más de 3 años hace | 2

Respondida
How to seperate fractional and decimal part in a real number
How about this? sign(x)*(abs(x) - floor(abs(x))) % Number -> x = -1.23 % Answer -> -0.23 % Number -> x = 1.23 % Answer ...

más de 3 años hace | 1