Community Profile

photo

JAYANTHI SANKARALINGAM


Last seen: 1 year ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Question


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 years ago | 0 answers | 0

0

answers

Question


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

3 years ago | 0 answers | 0

0

answers

4

answers

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

3 years ago | 0

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

3 years ago | 0