photo

Dan W


University of Rochester

自 2015 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

0 个提问
1 个回答

Cody

0 个问题
2 个答案

排名
2,445
of 300,166

声誉
26

贡献数
0 个提问
1 个回答

回答接受率
0.00%

收到投票数
13

排名
 of 20,884

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
72,958
of 167,596

贡献数
0 个问题
2 个答案

评分
40

徽章数量
2

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Answer
  • Commenter
  • Solver

查看徽章

Feeds

排序方式:

已解决


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

10 years 前

已解决


Find nth maximum
Find nth maximum in a vector of integer numbers. Return NaN if no such number exists. x = [2 6 4 9 -10 3 1 5 -10]; So ...

10 years 前

已回答
Delete row from Matrix
I'm not sure if this is new syntax or not, but it works with R2012a and it's fast and simple. x = rand(100); tic; x([...

10 years 前 | 13