Feeds
문제를 풀었습니다
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)...
거의 7년 전
문제를 풀었습니다
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...
거의 7년 전
문제를 풀었습니다
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...
거의 7년 전
답변 있음
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...
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...
거의 7년 전 | 0

