photo

Adrien Leygue


CNRS / Ecole centrale Nantes

Last seen: 3 días hace Con actividad desde 2011

Followers: 1   Following: 1

Mensaje

Professional Interests: Complex Fluids, Material Science, Numerical Methods, Model Reduction

Estadística

All
MATLAB Answers

2 Preguntas
6 Respuestas

File Exchange

1 Archivo

Cody

0 Problemas
23 Soluciones

CLASIFICACIÓN
3.089
of 300.369

REPUTACIÓN
19

CONTRIBUCIONES
2 Preguntas
6 Respuestas

ACEPTACIÓN DE RESPUESTAS
100.0%

VOTOS RECIBIDOS
5

CLASIFICACIÓN
1.717 of 20.936

REPUTACIÓN
1.082

EVALUACIÓN MEDIA
4.80

CONTRIBUCIONES
1 Archivo

DESCARGAS
6

ALL TIME DESCARGAS
10023

CLASIFICACIÓN
21.375
of 168.436

CONTRIBUCIONES
0 Problemas
23 Soluciones

PUNTUACIÓN
240

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • MATLAB Flipbook Mini Hack Participant
  • Thankful Level 2
  • MATLAB Mini Hack Participant
  • Personal Best Downloads Level 2
  • First Review
  • 5-Star Galaxy Level 4
  • First Submission
  • Knowledgeable Level 1
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Pregunta


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...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Respondida
Is 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 ...

más de 14 años hace | 2

Respondida
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...

más de 14 años hace | 0

Respondida
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 ...

más de 14 años hace | 1

| aceptada

Respondida
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...

más de 14 años hace | 1

Respondida
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...

más de 14 años hace | 0

Respondida
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...

más de 14 años hace | 1

| aceptada