photo

JAYANTHI SANKARALINGAM


Last seen: 거의 2년 전 2020년부터 활동

Followers: 0   Following: 0

통계학

  • First Answer

배지 보기

Feeds

보기 기준

질문


Recursion revisited, variable y has in correct value
function v= reversal(v) if length (v)>1 ii =round(length(v) /2 ); v=[reversal(v(ii+1:end)),reversal(v(1:ii))]; ...

대략 3년 전 | 답변 수: 0 | 0

0

답변

질문


how to return a function handle to a nested function that computed the value of a polynomialin matlab
how to return a function handle to a nested function that computed the value of a polynomialin matlab

거의 4년 전 | 답변 수: 0 | 0

0

답변

4

답변

답변 있음
recursive function to calculate Max number.
Write a function called recursive_max that finds the maximum element in a vector without using loop or any built in functions.th...

거의 4년 전 | 0

답변 있음
Finding max of an element vector using recursion
Write a function called recursive_max that finds the maximum element in a vector without using loop or any built in functions.th...

거의 4년 전 | 0