![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/19193531_1597385627391_DEF.jpg)
JAYANTHI SANKARALINGAM
Followers: 0 Following: 0
Statistik
RANG
181.517
of 297.016
REPUTATION
0
ANTWORTZUSTIMMUNG
33.33%
ERHALTENE STIMMEN
0
RANG
of 20.419
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 157.725
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
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))]; ...
mehr als 3 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
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
mehr als 4 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
write a function called palindrome that takes one input argument a char vector and recursively determine whether that argument is a palindrome you are not allowed to use loops not built in function like srtcmp etc. the function returns true or false
function ok=palindrome(txt) iflength(txt)<=1 ok=true; else ok=(txt(1)==txt(end)&&palindrome(txt(2:end-1))); end end ...
mehr als 4 Jahre vor | 4 Antworten | 0
4
Antwortenrecursive 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...
mehr als 4 Jahre vor | 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...
mehr als 4 Jahre vor | 0