![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/5099688_1522106161577_DEF.jpg)
cyril
MathWorks MOOC Program
Followers: 0 Following: 0
Statistics
RANK
8,092
of 297,016
REPUTATION
6
CONTRIBUTIONS
5 Questions
1 Answer
ANSWER ACCEPTANCE
80.0%
VOTES RECEIVED
3
RANK
of 20,419
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 157,725
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
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 years ago | 1 answer | 0
1
answerQuestion
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 years ago | 1 answer | 0
1
answerQuestion
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 ago | 1 answer | 0
1
answerQuestion
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 ago | 1 answer | 0
1
answerQuestion
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 ago | 1 answer | 0
1
answerDefining function handles in MATLAB
> f = @(x) 2*x^3+7*x^2+x; > f(0) 0 surprising no one mentioned anonymous functions...
11 years ago | 3