Réponse apportée
I want to find two missing parameters in an ODE system of equations using regression/optimization in MATLAB
Hi @naiva saeedia I have prepared a simple demonstration below to illustrate that the fmincon optimization solver can be utiliz...

plus de 2 ans il y a | 0

Réponse apportée
integrate for long equation
Hi @GUILU You can DIVIDE the integrand and then CONQUER it. Once you've done that, you can validate the result by comparing it ...

plus de 2 ans il y a | 1

Réponse apportée
How do I solve the following Algebra equation?
Algebraically speaking, since there is no equal sign '', it is not an equation and there is technically nothing to solve in the ...

plus de 2 ans il y a | 0

Réponse apportée
Particle swarm algorithm in Fuzzy Logic Designer is breaking unity sum property of membership functions, how can I stop this?
Hi @Ben Hatrick I have rarely used PSO to tune fuzzy systems, and I hadn't realized this phenomenon until you brought it up. ...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
hi how can i evaluate the function below from x=1,x=2 into a step of 0.1 y=x/(x2+1)
syms x y = eval('x/(x^2 + 1)') % <-- check if the function is correct xa = 1; % start point of [xa ≤ x ≤...

plus de 2 ans il y a | 0

Réponse apportée
How to expand this formula in Matlab/simulink
If the symbol is related to the complex variable as defined in the Laplace transform, then you can use the Transport Delay bloc...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
Plotting a 3-value graph
Refer to the examples in yyaxis documentation. x = linspace(0,10); y = sin(3*x); yyaxis left plot(x,y) z = sin(3*x).*exp(...

plus de 2 ans il y a | 0

Réponse apportée
How can I define a block ( Transfer Fcn) in simulink?
Hi @M1A Linear time-invariant models with more zeros than poles are not supported in Simulink. However, you can create such a m...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
how to add subscript into transfer function and constant block parameter
Hi @Olarewaju Update: In order to create a model block with a visually appealing display of mathematical notation, I personally...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
I am running into trouble answering the question asked in the description.
Hi @Jackson, You have been provided with the MATLAB script 'Project2_Q1.m' to plot the solution curves for question Q1(a). To ...

plus de 2 ans il y a | 0

Réponse apportée
problem with matlab function in simulink (inpunt problem)
Hi @Alya Bostani Is this the expected result for ? Try fixing the code in the matlabFunction block. t = 0:0.01:10; P = as...

plus de 2 ans il y a | 0

Réponse apportée
a nonlinear system and its control input in simulink
Hi @controlEE Great job on your progress shown in the comment. Now, I'd like to share my piecewise function formula with you: ...

plus de 2 ans il y a | 1

Réponse apportée
How to get graph properties on Live script? e.g. Rise time, setting time etc.
Can use the stepinfo() command. G = tf(1, [1, 10, 20]) % the transfer function stepinfo(G) step(G), grid on

plus de 2 ans il y a | 2

| A accepté

Réponse apportée
Hello all, I have a little problem with my simulink model. So, I can't connect this block each other like I had in past model from old version Matlab. Do u mind, how solve ?
Hi @Bogdan The blocks you're looking for are likely still present in the MATLAB directory, although they may be hidden within s...

plus de 2 ans il y a | 0

Réponse apportée
I can't see the cosine graph. How do I generate the cosine graph using 2^10 samples?
deltat = 0.001; nsamples = 2000; time =[0 : deltat : deltat*(nsamples-1)]; size(time) % for i = 1:nsamples ...

plus de 2 ans il y a | 0

Réponse apportée
Solving a system of Non Linear Differential Equations
Hi @kdv0 Apart from the incorrect initial value for , which should be , the rest of the information in the code is correct. The...

plus de 2 ans il y a | 0

Réponse apportée
Plotting an Inverse Laplace Function
Not exactly an answer, but rather an attempt to recreate the 'answer' that was displayed in your Command Window. It appears th...

plus de 2 ans il y a | 0

Réponse apportée
How to fix my linear fit model?
Hi @Jenni Upon initial inspection, it appears that the data follows the trend of the ReLU function, which is a piecewise linear...

plus de 2 ans il y a | 1

Réponse apportée
Simulation for a standalone wind turbine with a DFIG
There is an example for a wind turbine with a Doubly Fed Induction Generator (DFIG). Type "DFIG" at the Help Center to search ...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
Couple ODE System not enough Input arguments, Why?
Hi @Thanh Hoang I have added these four lines to your original code. The modifications made are minimal. %% ----- added these ...

plus de 2 ans il y a | 0

Réponse apportée
pole zero plot of simulink
Hi @Gowtham Use this block.

plus de 2 ans il y a | 0

Réponse apportée
I want to find two missing parameters in an ODE system of equations using regression/optimization in MATLAB
Hi @naiva saeedia The system identification task at hand seems to be quite challenging, as you only have two parameters to mani...

plus de 2 ans il y a | 0

Réponse apportée
How do I optimize solutions of ODE?
Hi @Amito Usami-san Considering your objective of varying the force input 'Fc', it becomes necessary to create a Gain Schedule ...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
solve differential equations use bvp4c
Hi @lvlv sun Add these two lines to code as shown below to get the desired number of points for the solution. numpts = 5; ...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
hi.I have problem in spacecraft dynamic control simulation.
Hi @ali.heydari I renamed the ODE function to 'odefcn()' because 'ode' is a built-in function introduced in the R2023b release....

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
How can i pass S-curve through the center of a circle ??
Hi @Dr Sohaib Khan Check if the following is the desired 3D line plot? t1 = (0:pi/100:pi); % Top curve 0 to 180 deg t2 = (-p...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
a nonlinear system and its control input in simulink
Hi @controlEE, If you define solely as a continuous-time function, it would appear as displayed in Figures 1 and 2. h = 2; ...

plus de 2 ans il y a | 1

Réponse apportée
Minimize the sum of squared errors between the experimental and predicted data in order to estimate two optimum parameters
Hi @Vikas Meena Taking into account the information provided, this solution is likely the most suitable option I can propose. ...

plus de 2 ans il y a | 0

Réponse apportée
Need Help with Position, Velocity, Acceleration model
Hi @Sinan When modeling a differential equation in Simulink, it is generally necessary to formulate the problem in integral for...

plus de 2 ans il y a | 0

Réponse apportée
i want to get the overall transfer function of the parallel conncected transfer functions blocks
@deekshith, Oh I see. Because you left the spaces. Either you ensure no spaces, or place commas (,) between the elements.

plus de 2 ans il y a | 0

Charger plus