photo

Joshua Levin Kurniawan


Last seen: 7개월 전 2022년부터 활동

Followers: 4   Following: 0

메시지

Hello, my name is Levin, I am a Flight Mechanics Engineer and a final year Aerospace Engineer student who specialized in MATLAB, Simulink, and C programming. Currently, I am interested in control, unmanned aerial vehicles, and their application topics.

Programming Languages:
C
Spoken Languages:
English
Pronouns:
He/him
Professional Interests:
Control Design, Control Systems, Aerospace Engineering, Aerospace and Defense

통계

All
MATLAB Answers

1 질문
13 답변

File Exchange

1 파일

Cody

0 문제
179 답안

순위
1,228
of 300,364

평판
60

참여
1 질문
13 답변

답변 채택
0.0%

획득한 표
20

순위
9,121 of 20,934

평판
82

평균 평점
5.00

참여
1 파일

다운로드 수
31

ALL TIME 다운로드 수
540

순위
844
of 168,407

참여
0 문제
179 답안

점수
2,537

배지 수
15

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • MATLAB Central Treasure Hunt Finisher
  • Knowledgeable Level 2
  • First Answer
  • Indexing I Master
  • Promoter
  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 2
  • CUP Challenge Master
  • Matrix Patterns I Master
  • Introduction to MATLAB Master
  • First Submission
  • Community Group Solver

배지 보기

Feeds

보기 기준

답변 있음
How to validate that one datetime is greater than another
You can use traditional logical operator for datatime. Operator "<", if true, means that the first datatime will occurs sooner t...

1년 초과 전 | 0

질문


Using fmincon to optimize Simulink model for optimal trajectory
Hello, so i want to search for optimal trajectory (by defining spline) position input to the Simulink Simscape Multibody model t...

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

1

답변

답변 있음
How to use operations in for loop problems
For this task, you can use for loop as follows A = zeros(3,20); for ii = 1:60 if ii<=20 A(1,ii) = ii^2; %first o...

1년 초과 전 | 1

| 수락됨

답변 있음
How to use LQR for setpoint tracking?
Hello Pedro. Regarding the LQR controller it has a unique properties. In this case, without an integral action, the controller o...

1년 초과 전 | 1

답변 있음
Issue with contour plot due to different size
Here, the issue is that the size for using "contour" function is MATLAB must be comply as follows: t0 must be equal to size(H0I...

1년 초과 전 | 1

| 수락됨

답변 있음
Rewriting in columns of Excel sheet
Hello, you can add this lines of code to create 3 loops by simply using for loop with defined matrix below. % Parameter combi...

1년 초과 전 | 2

답변 있음
Does Matlabappdesigner support webmaps?
Unfortunately, it's not. However, you can utize the built-in Geoplot function from MATLAB. Hereby I attach the documentation for...

1년 초과 전 | 2

| 수락됨

답변 있음
i want to solve 3 non linear equations in matlab
Hello, you can use the following code syms x y e1 e2 e3 eq1 = 72.25 + 23.29*x - 25.79*y - 6.592*x*y - 27.98*y^2 - 7.255*x*y^...

1년 초과 전 | 2

답변 있음
What is the critical gain and critical period in twin rotor MIMO system? How to calculate critical gain in twin rotor MIMO system?
To check the critical gain and period for MIMO system, you can check the link below: Stability Margin using Control System Tool...

1년 초과 전 | 1

답변 있음
I am trying to solve the system of two linear differential equations and create a phase diagram to asses the stability of the system.
First, you can define the ODE function function dydt = myODE(t, y, gamma, beta, yn, delta, lambda, pt, alpha) y1 = y(1); ...

1년 초과 전 | 2

답변 있음
simulation of a rov in simscape
Have you already put gravitational acceleration value in Mechanism Configuration Block? To enables the gravitational effect to y...

1년 초과 전 | 3

| 수락됨

답변 있음
Simulink rocket simulation, the scope is not working
What is your stop time? it seems like that the scope time scale is to big. In the top-right corner, you can click Scale X & Y (s...

1년 초과 전 | 1

답변 있음
how to resolve that error?
In StateFlow, you need to define all of the variables. From what I see from the figure, you seems like to forgot assign variable...

1년 초과 전 | 2

답변 있음
I am getting error:Warning: Failure at t=0.000000e+00. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (7.905050e-323)
Error "Unable to meet integration tolerances without reducing the step size below the smallest value allowed " usually appears w...

1년 초과 전 | 2