
Sam Chak
Content Feed
답변 있음
How to add some layers to ANFIS using Matlab toolbox?
Hi @Yeganeh Sattari The conventional ANFIS architecture has 5 layers that combines the elements of Adaptive Control, Neural net...
How to add some layers to ANFIS using Matlab toolbox?
Hi @Yeganeh Sattari The conventional ANFIS architecture has 5 layers that combines the elements of Adaptive Control, Neural net...
1일 전 | 0
답변 있음
Choosing optimal values from the genetic algorithm
Hi @Vivek You can try setting the rng to 'default' for the reproducibility of the result. If the function has multiple extrema...
Choosing optimal values from the genetic algorithm
Hi @Vivek You can try setting the rng to 'default' for the reproducibility of the result. If the function has multiple extrema...
1일 전 | 0
답변 있음
How to automatically accommodate the MF in the assigned range and not all stay in the same position in Fuzzylogicdesigner
Hi @Jose Luis Preciado Preciado If there are not too many MFs, can consider writing a brief script to flexibly design the MFs a...
How to automatically accommodate the MF in the assigned range and not all stay in the same position in Fuzzylogicdesigner
Hi @Jose Luis Preciado Preciado If there are not too many MFs, can consider writing a brief script to flexibly design the MFs a...
1일 전 | 0
답변 있음
how to solve the equation: Exdot=AX+Bu; with E is a singular matrix ? thank you
Hi @khawla mrad If your system is linear, then try using dss() command. See example below: If the system are nonlinear, then ...
how to solve the equation: Exdot=AX+Bu; with E is a singular matrix ? thank you
Hi @khawla mrad If your system is linear, then try using dss() command. See example below: If the system are nonlinear, then ...
2일 전 | 0
답변 있음
ODE response vs CCF response of mass-damper-spring system
Hi @J AI Because the output matrix really means for this output equation where is the output vector and is the state vect...
ODE response vs CCF response of mass-damper-spring system
Hi @J AI Because the output matrix really means for this output equation where is the output vector and is the state vect...
2일 전 | 0
답변 있음
How can i solve this equation?
Hi @Yigit Random numbers may or may not work because the 2D surfaces are trigonometric functions and bounded. If the selected n...
How can i solve this equation?
Hi @Yigit Random numbers may or may not work because the 2D surfaces are trigonometric functions and bounded. If the selected n...
3일 전 | 1
답변 있음
How can I plot this graph in MATLAB?
Hi @Itqan Ismail, search this function on MathWorks. help plot Here is an example: % Type out the line equations, and follow ...
How can I plot this graph in MATLAB?
Hi @Itqan Ismail, search this function on MathWorks. help plot Here is an example: % Type out the line equations, and follow ...
3일 전 | 0
답변 있음
Problem with automatic tuning for PIDs in a Linear Parameter Varying System
Try applying the decoupling mechanism to uncouple the dynamics so that the states behave like SISO systems. With the SISO mat...
Problem with automatic tuning for PIDs in a Linear Parameter Varying System
Try applying the decoupling mechanism to uncouple the dynamics so that the states behave like SISO systems. With the SISO mat...
4일 전 | 0
답변 있음
explanation of ode45 for constant force
Hi @Ajinkya Analysis shows that the steady-state value of of the linear system is given by . In your case, I guess that the ...
explanation of ode45 for constant force
Hi @Ajinkya Analysis shows that the steady-state value of of the linear system is given by . In your case, I guess that the ...
11일 전 | 1
답변 있음
Generate frequency spectrum of original and regenerated signal
Hi @Laveeza You can copy and paste it on the Workspace and hit [Enter] to run it. If you want to edit the code in the future, ...
Generate frequency spectrum of original and regenerated signal
Hi @Laveeza You can copy and paste it on the Workspace and hit [Enter] to run it. If you want to edit the code in the future, ...
18일 전 | 0
답변 있음
how to display an output on a plot itself?
Hi @Mohiedin Bagheri Do you want to plot something like this? x = linspace(-5, 2, 701); y = - x - 3; z = 2*x; figure(1) pl...
how to display an output on a plot itself?
Hi @Mohiedin Bagheri Do you want to plot something like this? x = linspace(-5, 2, 701); y = - x - 3; z = 2*x; figure(1) pl...
18일 전 | 1
| 수락됨
답변 있음
I have created a state space model for a pitch and bounce model of a vehicle, and I need help figuring out why one of my bode plots is not working and the other one is.
Hi @Tathva I provided some explanations below based on your queries about sys_2 and sys_3. ks1 = 34500; ks2 = 53400; ms = 1...
I have created a state space model for a pitch and bounce model of a vehicle, and I need help figuring out why one of my bode plots is not working and the other one is.
Hi @Tathva I provided some explanations below based on your queries about sys_2 and sys_3. ks1 = 34500; ks2 = 53400; ms = 1...
19일 전 | 0
답변 있음
6dof joint simulation problem
@Ridhi Bansal Most likely that the simulation ran into one of the singularities. You must identify the singularities and don't...
6dof joint simulation problem
@Ridhi Bansal Most likely that the simulation ran into one of the singularities. You must identify the singularities and don't...
19일 전 | 0
답변 있음
how to implement fuzzy logic code without using fuzzy Toolbox
Hi @merlin toche Some functions from the fuzzy logic toolbox in your code do not work on the much older R2015a release. The to...
how to implement fuzzy logic code without using fuzzy Toolbox
Hi @merlin toche Some functions from the fuzzy logic toolbox in your code do not work on the much older R2015a release. The to...
21일 전 | 1
| 수락됨
답변 있음
Tune rules in type 2 fuzzy logic
Hi @mona ali You can probably copy and edit the algorithm in tunefis.m edit tunefis so that you can call your desired user-d...
Tune rules in type 2 fuzzy logic
Hi @mona ali You can probably copy and edit the algorithm in tunefis.m edit tunefis so that you can call your desired user-d...
22일 전 | 0
답변 있음
Where can I find Fcn block in simulink in matlab R2022a?
Hi @Adolfo Marro, @Andreas, @Harun GIRGIN You can try if the following blocks from the older release still work in your system....
Where can I find Fcn block in simulink in matlab R2022a?
Hi @Adolfo Marro, @Andreas, @Harun GIRGIN You can try if the following blocks from the older release still work in your system....
23일 전 | 0
답변 있음
struggling with plotting slope field of second-order ODE containing sign function
Hi @Kieth Duong, The slope field depends on how the mesh is generated. Denser mesh is more accurate but with quiver, it will pr...
struggling with plotting slope field of second-order ODE containing sign function
Hi @Kieth Duong, The slope field depends on how the mesh is generated. Denser mesh is more accurate but with quiver, it will pr...
23일 전 | 0
| 수락됨
답변 있음
How to plot the direction field of a system of first-order ODEs using MATLAB?
Hi @Kieth Duong, The basic code looks like the following: [X, Y] = meshgrid(-2:4/14:2, -2:4/14:2); U = 2*X + 9/5*Y; V = -5/...
How to plot the direction field of a system of first-order ODEs using MATLAB?
Hi @Kieth Duong, The basic code looks like the following: [X, Y] = meshgrid(-2:4/14:2, -2:4/14:2); U = 2*X + 9/5*Y; V = -5/...
27일 전 | 1
| 수락됨
답변 있음
Fuzzy Best-Worst Method
Hi @SOURAV MONDAL The Best Worst Method is relatively new, being conceived in 2015 for dealing with multi-criteria decision-mak...
Fuzzy Best-Worst Method
Hi @SOURAV MONDAL The Best Worst Method is relatively new, being conceived in 2015 for dealing with multi-criteria decision-mak...
30일 전 | 1
답변 있음
Getting error when building Fuzzy Logic on Simulink
Hi @Ajay My guts tell me that in one of the three fuzzy inputs {Temperature, Humidity, and Wind Speed}, the designed MFs did no...
Getting error when building Fuzzy Logic on Simulink
Hi @Ajay My guts tell me that in one of the three fuzzy inputs {Temperature, Humidity, and Wind Speed}, the designed MFs did no...
30일 전 | 0
| 수락됨
답변 있음
Membership Trapezoid function Plot
Hi @Ameri The range for Last Hop is not given. So, you might try something like this: fis = mamfis; % Option #1: using rect...
Membership Trapezoid function Plot
Hi @Ameri The range for Last Hop is not given. So, you might try something like this: fis = mamfis; % Option #1: using rect...
약 1달 전 | 0
답변 있음
Why wont the state-space block accept a mux input?
Hi @ymps Your given state-space model is , and you will obviously see that it takes only a SINGLE input after doing the ma...
Why wont the state-space block accept a mux input?
Hi @ymps Your given state-space model is , and you will obviously see that it takes only a SINGLE input after doing the ma...
약 1달 전 | 0
| 수락됨
답변 있음
Adaptive step size solver for an ODE
Hi @Ali Kiral After fixing the code, you can compare your result with the result by ode45(). A little analysis shows that the ...
Adaptive step size solver for an ODE
Hi @Ali Kiral After fixing the code, you can compare your result with the result by ode45(). A little analysis shows that the ...
약 1달 전 | 1
| 수락됨
답변 있음
Adding surface to a beheaded Gaussian function
Hi @Bernd I'm not sure if this is what you want because your code doesn't reflect what you described. Anyhow, take a look at th...
Adding surface to a beheaded Gaussian function
Hi @Bernd I'm not sure if this is what you want because your code doesn't reflect what you described. Anyhow, take a look at th...
약 1달 전 | 0
답변 있음
Error occurred while running the simulation
Hi Marco, In most cases, the problem is likely caused by the singularity event, something like approaching the division-by-ze...
Error occurred while running the simulation
Hi Marco, In most cases, the problem is likely caused by the singularity event, something like approaching the division-by-ze...
약 1달 전 | 0
답변 있음
Is there a way to change the value of the transfer function through MATLAB & Simulink?
Hi @영탁 한 On top of the Paul's proposed solution in Simulink, here is one of few solutions in MATLAB. If you like this solution...
Is there a way to change the value of the transfer function through MATLAB & Simulink?
Hi @영탁 한 On top of the Paul's proposed solution in Simulink, here is one of few solutions in MATLAB. If you like this solution...
약 1달 전 | 1
답변 있음
Tuning a PID controller to desired Overshoot, settling time and rise time
Hi @Muhammad This is the Root Locus compensator design approach, first attempt. s = tf('s'); Gp = 20/(s^2 + 4.5*s + 64) c...
Tuning a PID controller to desired Overshoot, settling time and rise time
Hi @Muhammad This is the Root Locus compensator design approach, first attempt. s = tf('s'); Gp = 20/(s^2 + 4.5*s + 64) c...
약 1달 전 | 0
답변 있음
Solving system of ODEs with ode45
Hi @shir levi Edit: Previously I've got the same results like you did. However, after thinking about it, those 2 sets of 3 valu...
Solving system of ODEs with ode45
Hi @shir levi Edit: Previously I've got the same results like you did. However, after thinking about it, those 2 sets of 3 valu...
약 1달 전 | 0
답변 있음
How quarter car modeling on MATLAB?
Hi @Mustafa Furkan, I prefer the simulation-based numerical solution over the formula-based analytical solution in the example ...
How quarter car modeling on MATLAB?
Hi @Mustafa Furkan, I prefer the simulation-based numerical solution over the formula-based analytical solution in the example ...
약 1달 전 | 0
| 수락됨
답변 있음
How to write the feedback command here.
Hi @Hardik These are the basic commands. You can find more examples in the documentations related to commands. Search MathWorks...
How to write the feedback command here.
Hi @Hardik These are the basic commands. You can find more examples in the documentations related to commands. Search MathWorks...
약 1달 전 | 1
| 수락됨