Réponse apportée
How can I solve this problem by using Euler's method?
Mathematically, the solutions look like the following:

presque 3 ans il y a | 0

Réponse apportée
Help with simple nested function
Ciao @Davide Cannavacciuolo If I'm not mistaken, you probably want to plot something like this, right? Once you confirm that, w...

presque 3 ans il y a | 0

Réponse apportée
How to find the Transfer function of a Simulink output plot?
Hi @Atefeh I'm not an expert, but I have friends who are, and one of them said this is possible with this math function: whe...

presque 3 ans il y a | 1

Réponse apportée
How to solve these non-linear equations?
Hi @Samir Thapa If you have the Optimization Toolbox installed, then you can use the 'fsolve' function to solve the system of n...

presque 3 ans il y a | 0

Réponse apportée
Seeking help for find matrix A,B,C, D for a space rappresentation
Hi @Edoardo Moroni. Aha! Now I understand your fundamental issue. Your mathematics teacher should have covered this matrix top...

presque 3 ans il y a | 0

Réponse apportée
Fitting an exponential equation to this data with CFtool
Hi @Stefano Russo The data doesn't show the steady-state value. Nonetheless, we can still try fitting the exponential model to ...

presque 3 ans il y a | 0

Réponse apportée
Having problems with PID Control...
Hi @JAVIER Based on the provided information and without the mathematical model of the robotic arm and the PD controller gains,...

presque 3 ans il y a | 0

Réponse apportée
reinforcement learning will suddenly stop during the training process
HI @嘻嘻 The most common issue that the error message you've encountered in Simulink indicates that there is a "division by zero"...

presque 3 ans il y a | 0

| A accepté

Réponse apportée
ODE45 Output size
Hi @Sneh I think you want to compare the numerical solutions with the analytical solutions. %% Method 1: Numerical Solutions ...

presque 3 ans il y a | 0

Réponse apportée
How do I modify the ball on a beam system to accommodate for Friction?
Hi @Kez If Fr is the friction, and you know the friction formula, then you inject it in this differential equation. I don't ...

presque 3 ans il y a | 0

| A accepté

Réponse apportée
Fisher's z transform with atanh() to rho goes to infinity
Hi @Alba Peris, If you make sure that rho stays in the range , then will be finite. rho = -0.999:0.001:0.999; y = atanh(rho...

presque 3 ans il y a | 1

| A accepté

Réponse apportée
how to make input to the system time variable?
Okay @Min Khant, the problem is incomplete. However, you can learn by yourself using this example for tracking the desired tra...

presque 3 ans il y a | 1

| A accepté

Réponse apportée
GA Algorithm for PID tuning
Hi @SURBHI GOEL Sometimes you can let GA randomly search during the initial run to observe if the performance requirements are ...

presque 3 ans il y a | 0

Réponse apportée
How to keep track of accumulated error for integral term in a PID controller function?
Hi @David This simple example shows how to obtain the integral error signal by adding an auxiliary state in the my_Dynamics() f...

presque 3 ans il y a | 1

| A accepté

Réponse apportée
how to done this simulink , help me to do this i have to make aircraf with simulink
Hi @Nguyen Viet Hoang If you are not familiar with Simulink blocks and need to model the aircraft's longitudinal dynamics in Si...

presque 3 ans il y a | 1

| A accepté

Réponse apportée
How to apply PSO FOR REGRESSION?.
Hi @Ahmed Eltantawi it is technically possible to use PSO for predicting the output, although not by directly applying PSO. The...

presque 3 ans il y a | 0

| A accepté

Réponse apportée
Out of memory - dsolve 3rd order system
Hi @Chris G. If you're using the ode45 solver to find the state responses, here is how they look. Indeed, as mentioned by @Walt...

presque 3 ans il y a | 0

Réponse apportée
how I can fix sample time in ode45
Hi @hossen hassanzadth Are you looking for something like this? T = 0.5; tspan = 0:T:10; y0 = [0.2,0.3]; [t, y]...

presque 3 ans il y a | 0

| A accepté

Réponse apportée
Damped Oscillation Equation Fitting
Hi @Haardhik You can probably estimate the value of omega (angular frequency) by counting the number of zero-crossing events. I...

presque 3 ans il y a | 0

Réponse apportée
How to plot the Taylor Series expansion of sin²(x) in MATLAB
Hi @Abdulazziz I believe you when you say you don't know how to plot this in MATLAB. However, I don't understand the logical re...

presque 3 ans il y a | 0

Réponse apportée
how can I set the decimal digits of all coefficients at one time when outputting a polynomial f?
a = 5.327416; b = 3.660092; c = 1.5799301; fprintf('f(x) = %.3f*x^2 + %.3f*x + %.3f', a, b, c)

presque 3 ans il y a | 0

Réponse apportée
Unable to use Control System Designer
Hi @Oz Etkin Please post the full code because the error message appears to have something to do with logical operations involv...

presque 3 ans il y a | 0

Réponse apportée
Where is the tle file that contain data satellite (eccentricOrbitSatellite.tle) ?
Hello @Eman Adel The file "eccentricOrbitSatellite.tle" can be found in the folder named "orbitdata" if you have the Example fi...

presque 3 ans il y a | 0

Réponse apportée
how do I set membership function to this ANFIS?
Hi @Ahmad In ANFIS training, only the Grid Partitioning method provides the flexibility to assign a fixed number of membership ...

presque 3 ans il y a | 1

| A accepté

Réponse apportée
using mean function to return a singular value of a row vector
Hi Jack, It could be the get_SoilMoisture(Object) function is nested in a for-loop that performs 3 iterations in the Main Scr...

presque 3 ans il y a | 0

| A accepté

Réponse apportée
Calculated 100% rise time value different than matlab value
Hi @Caleb Since and , then % Parameters theta = 1.23; % rad wd = 1.97; % rad % Rise t...

presque 3 ans il y a | 0

| A accepté

Réponse apportée
Sinc Interpolation without using predefined function
Hi @Radu-Andrei Not an interpolation expert, but I believe your code didn't work correctly because the sampling frequency (at 1...

presque 3 ans il y a | 0

| A accepté

Réponse apportée
Piecewise function in Simulink
Hi @Yamana Uno Since the piecewise signal is generated through an If-Else conditional statement in the coding mode, @Ishaan's a...

presque 3 ans il y a | 0

Réponse apportée
Show matrix is not invertible.
Hi @L I believe this is an exercise in the Linear Algebra course. You have likely learned how to find the determinant of a matr...

presque 3 ans il y a | 0

Réponse apportée
how can i plot bifurcation diagram of fractional logistic map?
The logistic map is given by and the code for the graphical representation of the bifurcation may be converted from the Pytho...

presque 3 ans il y a | 0

Charger plus