photo

Pallav Patel


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

Followers: 0   Following: 0

統計

MATLAB Answers

7 質問
0 回答

ランク
108,869
of 300,781

評判
0

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

回答採用率
71.43%

獲得投票数
0

ランク
 of 21,088

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 171,031

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

スコア
0

バッジ数
0

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

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

平均評価

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

平均いいねの数

  • Thankful Level 3

バッジを表示

Feeds

表示方法

質問


Sort data based on different column
a = [5 8 1 2 7 6 3 4 70 60 50 40 30 20 10 0] I would like to sort t...

5年以上 前 | 1 件の回答 | 0

1

回答

質問


Loop for repeated file input if error
clc clear close all %Input for data file name myFilename = input('Please enter data file name.(Case sensitive):''s'); myF...

6年弱 前 | 0 件の回答 | 0

0

回答

質問


Printing pascals triangle binomial in loop
n = input('n:'); %Create first two rows that are always constant pt(1, 1) = 1; pt(2, 1 : 2) = [1 1]; for row = 3 : n ...

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

1

回答

質問


%i created a fibonacci sequence but i want an expanded output of the polynmial that give the fibonacii sequence, %ie (x+y)^3 = x^3 + 3x^2y + 3xy^2 + y^3
clc; clear; close all; n = input('n:'); %Create first two rows that are always constant pt(1, 1) = 1; pt(2, 1 : 2) = [...

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

1

回答

質問


Stop value in loop for repeating
clc; clear; close all; rng('shuffle'); myint = randi([4,100]); while mod(myint,2) ~= 0 myint = randi([4,100])...

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

1

回答

質問


How to combine two outputs of a into a single vector.
L = randi([2,5]); lo = [1,5,10] hi = [3,8,9] for k = 1:length(hi) if hi(k(1:end))>lo(k(1:end)) a=[lo(k):hi(...

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

1

回答

質問


How to replace the 5 in my vector with decreasing numbers like 5,4,3,2,1
x(3:4,3:5) = 5

6年弱 前 | 2 件の回答 | 0

2

回答