photo

Adrien Leygue


CNRS / Ecole centrale Nantes

Last seen: Today 自 2011 起处于活动状态

Followers: 1   Following: 0

消息

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

统计学

All
MATLAB Answers

2 个提问
6 个回答

File Exchange

1 文件

Cody

0 个问题
22 个答案

排名
3,039
of 297,503

声誉
19

贡献数
2 个提问
6 个回答

回答接受率
100.0%

收到投票数
5

排名
1,708 of 20,449

声誉
1,076

平均
4.80

贡献数
1 文件

下载次数
13

ALL TIME 下载次数
9962

排名
20,951
of 159,017

贡献数
0 个问题
22 个答案

评分
230

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • 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

查看徽章

Feeds

排序方式:

提问


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

2 years 前 | 1 个回答 | 0

1

个回答

提问


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

2 years 前 | 1 个回答 | 0

1

个回答

已回答
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 ...

14 years 前 | 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...

14 years 前 | 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 ...

14 years 前 | 1

| 已接受

已回答
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...

14 years 前 | 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...

14 years 前 | 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...

14 years 前 | 1

| 已接受