Community Profile

photo

Yasasvi Harish kumar


Active since 2019

Followers: 0   Following: 0

Statistics

All
  • Solver
  • First Answer

View badges

Feeds

View by

Solved


Fibonacci-Sum of Squares
Given the Fibonacci sequence defined by the following recursive relation, * F(n) = F(n-1) + F(n-2) * where F(1) = 1 and F(1)...

5 years ago

Solved


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

5 years ago

Solved


Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...

5 years ago

Answered
How I can Plots this function
Hey, This should help you. function x = question(t) if t >=0 x = 3*exp(-2*t); else x = 0; e...

5 years ago | 0