photo

JAYANTHI SANKARALINGAM


Last seen: 2年以上 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

3 質問
2 回答

ランク
181,950
of 297,503

評判
0

コントリビューション
3 質問
2 回答

回答採用率
33.33%

獲得投票数
0

ランク
 of 20,449

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 159,017

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
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年以上 前 | 1 件の回答 | 0

1

回答

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