Answered
ANFIS EDIT out of memory
Hi @Antonio Abela You mentioned that there are 10 inputs and 1 output. However, in the CSV file, there are 15 columns, with eac...

2 years ago | 0

Answered
How can I adjust the PID values in Simulink?
Hi @Elli I faced difficulties in effectively stabilizing the unstable 3rd-order system using solely the PID controller. Even th...

2 years ago | 1

Answered
How can I adjust the PID values in Simulink?
Hi @Elli, The 3rd-order linearized system is unstable because the second transfer function has a pole located in the right half...

2 years ago | 1

| accepted

Answered
How to run an ODE Function with a variable outside of the Differential Equation
@Adam, Do you expect the results as shown? figure hold on; R0 = .3; L = 2*pi*R0; Q = 0.01; x = 0:0.001:L; % I = - 4e8...

2 years ago | 1

| accepted

Answered
2% and 5% settling times
Hi @Daniel The intellectual explanation for the discrepancy could be that one of the settling times was measured incorrectly. T...

2 years ago | 0

Answered
Solution of Growth problem
% y0 is a 6 x 1 vector of initial city populations y0 = [100; 300; 500; 125; 100; 200]; % t is the number of years of growth ...

2 years ago | 2

| accepted

Answered
plot with text function
@Francesco, do you want to display the figure without tick marks? ax = axes(figure()); % create axes handle plot(0:10); xl...

2 years ago | 0

Answered
trying to write complex equation with parentheses
Hi @ali When inputting a lengthy equation with multiple parentheses into the programming code, I usually adopt a "divide-and-co...

2 years ago | 0

Answered
Problem facing in solving xdot=Ax system when A is unstable.
Hi @Hemanta Hazarika This is an educated guess. If the unstable state matrix is and the initial values are , then the error be...

2 years ago | 0

| accepted

Answered
Need to fit a curve to some data points
Hi @ISh This Rational function model (Rat11) precisely fits the three data points. format long g %% Data xdat = [ 1 2 100...

2 years ago | 0

Answered
Need to fit a curve to some data points
Here's another candidate. An exponential decay function model should align with the description you provided. Try learning how ...

2 years ago | 0

| accepted

Answered
Can I trust this closed loop response and include it as a final result in my Thesis?
Hi @Ayesha, You can actually verify the result (from Check Bode Characteristics block) with the Bode plot of the Closed-loop Sy...

2 years ago | 0

| accepted

Answered
providing our own Initial cluster centroids to fcm function
Hi @NALLARASU KRISH The ability to provide the initial cluster centers was introduced in R2023b through the fcmOptions() comman...

2 years ago | 1

| accepted

Answered
how to find intersection data between 2 function
Hi @Arif The red line represents the extrapolation up to the vertical line . The main concept here is to determine the equation...

2 years ago | 1

| accepted

Answered
Plotting sine functions using linspace command
It says to plot y as a function of t. You can follow this example to make the plot. You can learn more about linspace() and plo...

2 years ago | 1

Answered
Centigrade to Fahrenheit Converter doesn't work properly
Hey @Laura, there doesn't seem to be any issue with the code when the input() command is placed outside of the C2F() function. ...

2 years ago | 0

Answered
Why does this code give me an error?
Hi @Sadiq Akbar If nonlinear inequality constraints are not available, you can disable them in the code. It appears that the up...

2 years ago | 0

Answered
Finding the peak of a sinusoidal voltage using only Simulink Blocks (No Matlab Function Block)
Hi @HASSAN ABDELGABIR Isn't the MATLAB Function block part of the Simulink block families that grants you the greater potential...

2 years ago | 0

Answered
How to optimize a parameter, influencing the dynamic response of a control system
Hi @javier rivas I just wanted to point out that if you use the step() command instead of the lsim() command, the resulting out...

2 years ago | 1

Answered
Simulink integrator error, please help
Hi @Federico Ennio, Considering the system dynamics, the controller can be designed as follows , where , , . Ho...

2 years ago | 0

Answered
I need Pressurized Water Reactor (PWR) steam generator matlab code so if anyone has please help me. Thanks
Hi @JAWED AHMED While I'm not an expert in Pressurized Water Reactor (PWR) systems, I can point you towards a helpful resource....

2 years ago | 0

Answered
How to get 2% and 5% settling time from simulink?
Hi @Daniel Below, you'll find the calculation for the settling time based on the 5% criterion: %% System zeta= 1/2; wn = 1;...

2 years ago | 0

Answered
how to write sqrtroot power 7 ?
@Grégoire, If you mean this function: then you can use the function handle: g = @(x) (sqrt(14*x - 7)).^7; x = 0.5:0.01:...

2 years ago | 1

Answered
Different results between Step and Stepinfo
Hi @Gerard Carroll The main reason behind the difference in the step-response characteristics between Approach 1 (from Transfer...

2 years ago | 0

Answered
How do I deploy singleton membership function in fuzzy logic output
Hi @Evans Here's how you can create fuzzy singleton membership functions. In this code snippet, I'm using three singletons. % ...

2 years ago | 0

Answered
Hello, please can you help me to solve the error in this code below!!!!
Hi @yousra yahia I'm not entirely certain about the purpose of your code since some lines appear to deviate from the strict rul...

2 years ago | 0

Answered
The distance traveled by a ball falling in the air is given by the equation x = x_{0} + v_{0}*t + 1/2 * a * t ^ 2
Hi @Felix Jim It might be beneficial for you to explore how to utilize MATLAB for solving dynamical equations, particularly whe...

2 years ago | 0

Answered
What would be the equation of the following surface?
You can probably try this quadratic function , where is a constant, and , . Update 1: Another candidate function for the surfa...

2 years ago | 0

| accepted

Answered
how to write a complex transfer function
Ensure no space in . numerator = [-10.45 -10.53 -.2246 0]; denominator = [0 1 1.2116 -.1087-.0909j]; sys = tf(num...

2 years ago | 0

| accepted

Answered
I am having trouble to define in matlab the transfer function of the following block diagram.
Hi @Jake In order to obtain the transfer function of the plant, you can likely perform the algebraic manipulations in the manne...

2 years ago | 1

| accepted

Load more