photo

Revant Adlakha


Last seen: environ un an il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

All
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
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)...

plus de 3 ans il y a | 2

Réponse apportée
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 ...

plus de 3 ans il y a | 1

A résolu


Numbers on 7-segment
This is a 7-segment: _ |_| |_| It's a 3-by-3 char matrix.It has made by 3 characters: '_' , '|' and ' ' (space...

presque 4 ans il y a

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

presque 4 ans il y a

A résolu


Pattern Sum
Write a function which receives two single digit positive integers, (k and m) as parameters and calculates the total sum as: k...

presque 4 ans il y a