photo

Adriano Filippo Inno


Last seen: 거의 4년 전 2017년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

4 질문
4 답변

순위
5,179
of 300,765

평판
10

참여
4 질문
4 답변

답변 채택
50.0%

획득한 표
1

순위
 of 21,084

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 170,941

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 2
  • Knowledgeable Level 1
  • First Answer
  • Thankful Level 1

배지 보기

Feeds

보기 기준

답변 있음
nxn matrix as an input argument in function
I'm a bit confused by your question. Do you need to solve a linear system with the LU method? If yes, this function will work:...

대략 5년 전 | 0

답변 있음
ODE45 how can I format this system of equations?
Assuming your parameters are constants, create the dynamics function as follows: function dY = DinFun(~,Y,parameters) % cons...

6년 초과 전 | 1

질문


best way to evaluate a 2d function composed by a summation of functions
I need to plot this function: where c is a vector of constants, and each function is a polynomial expasion of the 4+i or 4+j...

6년 초과 전 | 답변 수: 0 | 0

0

답변

답변 있음
How to animate different plots at the same time using subplot, addpoints and animatedline?
If you don't want to plot a moving marker: t = 0:pi/20:10*pi; y1 = sin(t); y2 = sin(t+pi/2); subplot(1,2,1) curve1 = anim...

6년 초과 전 | 0

| 수락됨

답변 있음
Finding nearest values in two matrices
Hi John, the following do what you asked using min: a = A(:,1); b = B(:,1); Nb = length(b); A_new = zeros(Nb,3); fo...

6년 초과 전 | 0

| 수락됨

질문


How to avoid evalin?
I have a .mat file that contains a large set of vectors. Let's say var1, var2,....varN I need to use these vectors in a for loo...

6년 초과 전 | 답변 수: 1 | 0

1

답변

질문


ODE, how to retrive variables computed in the previous step
I need to solve a nonlinear system inside the ODE at each time step in order to construct the current state derivatives. Since...

대략 7년 전 | 답변 수: 1 | 0

1

답변

질문


How can I overwrite a variable saved in a script that I have to loop with a different value?
Try to make that simple: a = [10 20 30 40]; for i = 1:4 run('blabla.m') % but inside the script: a = 18 en...

8년 초과 전 | 답변 수: 1 | 0

1

답변