Alec Poulin
Followers: 0 Following: 0
Statistiques
RANG
27 206
of 295 569
RÉPUTATION
1
CONTRIBUTIONS
6 Questions
1 Réponse
ACCEPTATION DE VOS RÉPONSES
100.0%
VOTES REÇUS
1
RANG
of 20 247
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 154 105
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
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...
plus de 5 ans il y a | 1 réponse | 0
1
réponseQuestion
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...
environ 6 ans il y a | 1 réponse | 0
1
réponseQuestion
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}'} ...
environ 6 ans il y a | 2 réponses | 0
2
réponses[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...
environ 6 ans il y a | 0
Question
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...
environ 6 ans il y a | 1 réponse | 0
1
réponseQuestion
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 = ...
plus de 6 ans il y a | 1 réponse | 0
1
réponseQuestion
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 ...
plus de 6 ans il y a | 2 réponses | 1