photo

Alec Poulin


Last seen: 4 years 前 自 2018 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

6 个提问
1 个回答

排名
27,502
of 297,457

声誉
1

贡献数
6 个提问
1 个回答

回答接受率
100.0%

收到投票数
1

排名
 of 20,438

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 158,938

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 3
  • First Answer

查看徽章

Feeds

排序方式:

提问


Vectorize many matrix multiplications using the third dimension
I have collections of matrices, say two collections A and B of n matrices each, implemented as cell arrays. I would like to prod...

6 years 前 | 1 个回答 | 0

1

个回答

提问


chop doesn't chop very small numbers
I have a small number, say |1e-14|, and I want to chop it to three decimals. In this case, it should give 0. Yet: >> chop(1...

6 years 前 | 1 个回答 | 0

1

个回答

提问


Convert cell array of character vectors to evaluable expressions
I have a cell array of character vectors: >> list list = 5×1 cell array {'10^{-4}'} {'10^{-3}'} ...

6 years 前 | 2 个回答 | 0

2

个回答

已回答
[DEPRECATED] What frustrates you about MATLAB?
I don't know if these points were said in one of the 128 answers, but these frustrate me: * Pressing |Tab| on the keyboard wr...

6 years 前 | 0

提问


imagesc does not take an axis handle as its first argument even if it should
According to the documentation (https://www.mathworks.com/help/matlab/ref/imagesc.html), imagesc should take as an optional firs...

6 years 前 | 1 个回答 | 0

1

个回答

提问


Colon-generated arrays with or without brackets
From what I can tell, the arrays a:d:b and [a:d:b] are exactly the same thing. For example, >> [1:3] == 1:3 ans = ...

7 years 前 | 1 个回答 | 0

1

个回答

提问


Design choice for iterating over a cell array
I discovered that it was possible to iterate over a cell array in Matlab: for x = {1, "foo", [1,2]} x end ...

7 years 前 | 2 个回答 | 1

2

个回答