photo

Prithvi Shams


Last seen: 約5年 前 2019 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

2 質問
2 回答

ランク
185,183
of 300,765

評判
0

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

回答採用率
100.0%

獲得投票数
0

ランク
 of 21,084

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 170,941

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

スコア
0

バッジ数
0

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

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

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 2
  • First Answer
  • Thankful Level 1

バッジを表示

Feeds

表示方法

回答済み
[Assignment]Write a function called saddle that finds saddle points in the input matrix M.
function indices = saddle(M) B = size(M); idx = 0; A = []; %% for i = 1:B(1) for ...

5年以上 前 | 0

回答済み
Write a function called max_sum that takes v, a row vector of numbers, and n, a positive integer as inputs. The function needs to find the n consecutive elements of v whose sum is the largest possible.
Here's my version of the code. While the problem can be solved with movsum() in a single line, it's recommended to utilize if a...

5年以上 前 | 0

質問


What is wrong with this code?
I would like to plot the following function where, Ao = 0.2, E = 181e9, Beta = 200, Vo = 0.5 and Va = 0.85. The objective i...

約6年 前 | 1 件の回答 | 0

1

回答

質問


Why does my function keep returning zero?
In the following code, my objective is to plug different values of T and alpha into the functon and calculate y for two situatio...

約6年 前 | 1 件の回答 | 0

1

回答