Statistiques
RANG
2 999
of 295 448
RÉPUTATION
19
CONTRIBUTIONS
2 Questions
6 Réponses
ACCEPTATION DE VOS RÉPONSES
100.0%
VOTES REÇUS
5
RANG
1 709 of 20 227
RÉPUTATION
1 071
CLASSEMENT MOYEN
4.80
CONTRIBUTIONS
1 Fichier
TÉLÉCHARGEMENTS
15
ALL TIME TÉLÉCHARGEMENTS
9914
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
Tensor creation like "pageTensorprod"?
I have two 3x3xN tensors (let's call them A and B) which I would like to combine into a 3x3x3x3xN tensor. More specifically I w...
plus d'un an il y a | 1 réponse | 0
1
réponseQuestion
writestruct does not reproduce the input of readstruct
I find it disturbing that applying writestruct on a structure created with readstruct does not reproduce the original input: see...
presque 2 ans il y a | 1 réponse | 0
1
réponseIs it possible to solve FEM by Neural Network?
This kind of problem is typically the case where one would use model reduction techniques. I would refer you to methods such as ...
plus de 13 ans il y a | 2
Condition
Try this: A = rand(1,10); B = A(A<0.5); C = zeros(size(A)); mask = A<0.5; C(mask) = A(mask); I think this could provide so...
plus de 13 ans il y a | 0
Are iterative methods always better than direct methods for solving large linear systems?
From my personal experience, there is only one case where I have been able to outperform mldivide through the use of one of the ...
plus de 13 ans il y a | 1
| A accepté
ODE45
First the step in ode45 has little meaning since the method is adaptive and will choose the appropriate time step based on a pre...
plus de 13 ans il y a | 1
Find max of matrix without using built in function.
The following code will extract the minimum over each column. No loop no max no min and of course not optimal. Feel free to adap...
plus de 13 ans il y a | 0
Should I use object oriented programming in MATLAB?
I have recently had to rewrite 90% of our research code (model reduction) which had become too messy and too intricate to suppor...
plus de 13 ans il y a | 1
| A accepté