Respondida
Solving Differential Equation by Laplace Transform
Hi @Addison Harley Tiangco Follow the example to solve Differential Equations (RLC Circuit) using Laplace Transform. You can t...

alrededor de 4 años hace | 0

Respondida
simulink model of wind turbine lqg regulation does not work properly
Hi @Helia Bisadi I suspect that the instability is caused by the signs in these two summation blocks: If you look into the c...

alrededor de 4 años hace | 1

Respondida
Calcul of Vehicle steering angle
Hi Mouna The examples in this toolbox will be helpful <https://www.mathworks.com/products/sysid.html System Identificatio...

alrededor de 4 años hace | 0

Respondida
Solve nonlinear 2nd order ODE numerically
Hi @Lucas You can follow the example here https://www.mathworks.com/help/matlab/ref/ode45.html#bu3uhuk and try something lik...

alrededor de 4 años hace | 1

| aceptada

Respondida
Does this represent a 3DOF system if not how can I incorporate it as such?
@Keenan, Looks like no error. % Based on X-34 launch specs and parameters % Variable List: % Delta = Time step (s) % t = T...

alrededor de 4 años hace | 0

Respondida
How to add a sine wave with a frequency of 50hz and a magnitude of 20 in Simulink
Hi @Pranav Enter the values for the Amplitude and Frequency in the Sine Wave block. In MATLAB, it looks like this: t = 0:0....

alrededor de 4 años hace | 1

| aceptada

Respondida
Derivative of state is not finite (integrator error)
Hi @Hanne Grov I don't see any division-by-zero issue, unless there are some divisive terms hidden inside the MATLAB Function B...

alrededor de 4 años hace | 0

Respondida
How to find out TSP of a graph.
Hi @Ashish Verma You want to plot the graph like this? s = [1 1 1 1 2 2 2 3 3 4]; t = [2 3 4 5 3 4 ...

alrededor de 4 años hace | 0

Respondida
I have a differential equation in which the equation contains a function. I don't know how to input and call the function to generate the graph I want. can you help me fix it
Hi Ms. @Latifah Hanum, Equation 6 is a kind of ON/OFF switch that can be constructed using a scaled version of the signum funct...

alrededor de 4 años hace | 1

| aceptada

Respondida
Generate waveform using basic matlab code
Hi @Abhibrata Adhikary The given waveform is a piecewise smooth function, and it can be constructed as follows: t = 0:0.1:2000...

alrededor de 4 años hace | 1

| aceptada

Respondida
How we can give input to ANFIS
Hi @Gagandeep Kaur Maybe you can try something like this: IN = [in01(:) in02(:) in03(:) in04(:) in05(:) in06(:) in07(:) in08...

alrededor de 4 años hace | 0

Respondida
How to build the sensor subsystem in SIMULINK like this video ?: https://www.youtube.com/watch?v=qhIjIu-Zk10&list=PLn8PRpmsu08pQBgjxYFXSsODEF3Jqmm-y&index=6
Hi @Nam Nguyen I guess the video in the YouTube link is removed. It is not the end of the world if you can't model a sensor sys...

alrededor de 4 años hace | 0

Respondida
How to reduce the simulation running time when fuzzy block gets included?
Hi @MALARVILI S I guess that your designed Fuzzy System is a Mamdani-type FIS, and it has too many Rules for the program to eva...

alrededor de 4 años hace | 1

| aceptada

Respondida
How to combine two fuzzy inference system in Simulink?
Hi @Swathi T I don't know how your Rules and FIS work, but you can try combining both FIS blocks in the additive way: Also, ...

alrededor de 4 años hace | 1

| aceptada

Respondida
How to Code Math Equation in Matlab.
Hi @bob Do you wish to learn only the specific code for solving the Heat Equation? Or, do you want to learn MATLAB from scratc...

alrededor de 4 años hace | 1

| aceptada

Respondida
i have unstable second order system and trying to make it follow square wave using reinforcement learning but the agent doesn't converge
@farouk I don't know how many iterations your RL will take to stabilize the system and track the square wave. But you can proba...

alrededor de 4 años hace | 0

Respondida
Trying to code a state space modelling for thrust vector control of a rocket. I keep getting Error using plot, Invalid Data Argument, please help
@Chinmay Kundapur, alternatively, you can directly write the color code straightaway. Iyy = 2.186e8; m = 38901; ...

alrededor de 4 años hace | 0

Respondida
how to draw graphs for optimal control
Hi @mallela ankamma rao Do expect plots like these? test = -1; % Test variable; as long as variable is negative ...th...

alrededor de 4 años hace | 0

Respondida
How to solve system of Coupled nonlinear 2nd order ordinary differential equation in MATLAB?
@Sandip, Rearrange the equations in these forms and then substitute Eq. (3) into Eqs. (1) and (2). Try settle the math ...

alrededor de 4 años hace | 0

Respondida
How do I solve this system of equations using matlab
Hi @Ryan Boulden Unable to solve because there are 8 variables, but only 4 equations. , , , , , , ,

alrededor de 4 años hace | 0

Respondida
Multiple degree of freedom spring mass damper system using ode 45
Hi @Ryan Boulden The simulation runs. t = linspace(0, 10, 1001); ic = [0, 1, -1, 0]; [t, x] = ode45(@(t, x) odefun(t, x), t...

alrededor de 4 años hace | 0

Respondida
PID controller and PID tuner for a SIMO system
Hi @Mikel Your system is . If you algebraically design as , then the closed-loop becomes . Since you didn't specify the...

alrededor de 4 años hace | 2

| aceptada

Respondida
Alternative to the Differential block
Hi @Joe Jones You can try the Robust Exact Differentiator Block: http://www.reichhartinger.at/

alrededor de 4 años hace | 0

Respondida
plotting predator-prey model and its phase portrait
Hi @Krtin Kala If you want to plot the phase portrait, you can try using the numerical approach. % Parameters A = 2/3; B = 4...

alrededor de 4 años hace | 2

| aceptada

Respondida
How to show plot in interval of 3?
Hi @Ara Here is an example to use ax.XTick: x = linspace(0, 24, 2401); y = 30*(sin(2*pi/24*x) + 1); plot(x, y, 'linewidth', ...

alrededor de 4 años hace | 2

| aceptada

Respondida
How I can give condition & plot the solution of this differential equation. . . . . . . Please Guide
Hi @DEEPAK KARARWAL Giiven the parameters, it seems that if you select initial values and , the boundary values are satisfied....

alrededor de 4 años hace | 0

Respondida
Can anyone help me in getting this graph using the attached equation (16).
Hi @Nudrat Sufiyan Guess you need to type out this equation and insert the parameters Example only, not true equation. ...

alrededor de 4 años hace | 2

| aceptada

Respondida
Can Someone help me with this Size error? I am working on Fuzzy Logic controller of Fuel cell and when i place Fuzzy Logic on Voltage it gives me this error
@Muzammil Naeem Update 26 Jul 2022: There are two inputs going into your FINALFANFUZZY.fis However, you connect the inputs...

alrededor de 4 años hace | 0

Respondida
State and Output Function of a nonlinear dynamics to use is NMPC
Hi @seyyed Erfan ghoreyshipour The axial-flow pump system is governed by this equation: . So, the State variable in this equa...

alrededor de 4 años hace | 0

| aceptada

Respondida
How to Get Second Derivative in ode45 solver?
Hi @ercan duzgun You don't need to..., because you can see the elephant in the room (not sure if this is the correct metaphoric...

alrededor de 4 años hace | 2

| aceptada

Cargar más