photo

Vatsal Gupta


自 2018 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

6 个提问
0 个回答

Cody

0 个问题
1 个答案

排名
66,902
of 300,900

声誉
0

贡献数
6 个提问
0 个回答

回答接受率
50.0%

收到投票数
0

排名
 of 21,106

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
121,777
of 171,578

贡献数
0 个问题
1 个答案

评分
20

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 2
  • Thankful Level 1
  • Solver

查看徽章

Feeds

排序方式:

提问


Time managed program in MATLAB
Is there any specific function or code which enables the code to run for a specified amount of time, like say, 10 minutes. The c...

7 years 前 | 1 个回答 | 0

1

个回答

提问


How to modify Loop variable inside the loop body
for i=1:10 if randi(10)==3 i=i-1; end end In the above code, i must get reduced by 1 whenever t...

7 years 前 | 1 个回答 | 0

1

个回答

提问


Replace repeated pair of coordinates generated from 'randi' statement.
N=input('How many pairs?'); randnos=randi(10,N,2); The above statement generates N pairs of coordinates as a Nx2 array. ...

7 years 前 | 3 个回答 | 0

3

个回答

提问


Divide points according to quadrant system
I have written a code to divide L pairs (coordinates) according to 4 quadrants: L=input('Enter the number of pairs: '); ...

7 years 前 | 1 个回答 | 0

1

个回答

提问


Calculate distance between an 5x2 array of (x,y) pairs and a known point
tr=randi(10,5,2);%makes 5x2 matrix generating random nos b/w 1 to 10 xy=sortrows(tr); The above statements makes the fol...

7 years 前 | 2 个回答 | 0

2

个回答

提问


Time dependent function in MATLAB which modifies a variable's value after a few known seconds.
Let x=100. After 5 seconds x should become 99. After further 5 seconds, x should become 98 and so on till x becomes 20. In C++, ...

7 years 前 | 0 个回答 | 0

0

个回答

已解决


Project Euler: Problem 1, Multiples of 3 and 5
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23...

7 years 前