photo

Revant Adlakha


Last seen: ongeveer een jaar ago Active since 2020

Followers: 0   Following: 0

Statistics

All
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
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)...

meer dan 3 jaar ago | 2

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

meer dan 3 jaar ago | 1

Solved


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

bijna 4 jaar ago

Solved


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

bijna 4 jaar ago

Solved


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

bijna 4 jaar ago