photo

cyril


MathWorks MOOC Program

Last seen: 5 years 前 自 2014 起处于活动状态

Followers: 0   Following: 0

消息

统计学

MATLAB Answers

5 个提问
1 个回答

排名
8,265
of 300,338

声誉
6

贡献数
5 个提问
1 个回答

回答接受率
80.0%

收到投票数
3

排名
 of 20,922

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 168,149

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Review
  • Thankful Level 1
  • First Answer

查看徽章

Feeds

排序方式:

提问


How can I get elegantly an upper triangle random matrix (0 elsewhere)?
I have seen the triu and tril functions, but I can't use them to set to 0: A = rand(4); tril(A)=0; % won't work any i...

11 years 前 | 1 个回答 | 0

1

个回答

提问


Simple calculations giving high imprecisions
I'm doing the following simple code, that aims to find a point position knowing distances in 2D but the outputs is far from t...

11 years 前 | 1 个回答 | 0

1

个回答

提问


gaussian kernel smoothing, how to optimize parameter sigma?
Hi, my question is how to find an optimal standard deviation for the gaussian kernel filter smoothing? too large, we are lo...

11 years 前 | 1 个回答 | 0

1

个回答

提问


Does matlab have matrix broadasting
This x=[1:3]'; x.^(1:5) would work on Octave thanks to <https://www.gnu.org/software/octave/doc/interpreter/Broadcastin...

11 years 前 | 1 个回答 | 0

1

个回答

提问


A logical indexing for row-wise max
I'm wondering if there is anything simpler than: x = [2 3;3 1] [a,b]=max(x, [], 2); % now return the matrix containin...

11 years 前 | 1 个回答 | 0

1

个回答

已回答
Defining function handles in MATLAB
> f = @(x) 2*x^3+7*x^2+x; > f(0) 0 surprising no one mentioned anonymous functions...

11 years 前 | 3