Community Profile

photo

cyril


MathWorks MOOC Program

Last seen: 3年以上 前 2014 年からアクティブ

Followers: 0   Following: 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...

10年弱 前 | 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...

10年弱 前 | 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...

10年弱 前 | 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...

約10年 前 | 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...

約10年 前 | 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...

約10年 前 | 3