Risposto
How to implement the linear output function in Takagi–Sugeno Fuzzy System?
Hi @m To describe the equation (a flat plane surface), use the syntax 'linear', [1 1 2] in the addMF() command for the output ...

quasi 2 anni fa | 0

Risposto
Curve fitter limitation for equations in the form f(x,y)=a*x^n/(y+b)^m
Hi @Boyan Given that there are only data points, employing a bivariate polynomial of degree two in and degree four in will e...

quasi 2 anni fa | 1

| accettato

Risposto
My roots don't match example roots when solving routh criterion
Hi @Jhryssa From Part (a), you should have obtained the stable range of : . Part (b) instructs you to verify the stability resu...

quasi 2 anni fa | 0

Risposto
I have a problem in which I have to define a fuzzy membership function with variable x(1) x(2) like below. For these variables I have to generate random number between 1 and 5. x(1)<x(2). What will be code for that?
Set a constraint on so that . fis = sugfis; %% Random integer generator n1 = 3; n2 = 5 - n1; x1 = randi(n1, 1); x2 ...

quasi 2 anni fa | 0

Risposto
How to get inputs from outputs in fuzzy interface system?
Hi @amir There is no built-in function in the Fuzzy Logic Toolbox to accomplish this. Moreover, if the fuzzy inference system (...

quasi 2 anni fa | 0

Risposto
Which "AND" operator is used for the fuzzy rules created by ANFIS?
Hi @Gary By default, ANFIS generates a single-output Sugeno fuzzy inference system. The 'AND' operator is specified in one of t...

quasi 2 anni fa | 0

Risposto
How to see the firing strength using command line of a fuzzy System?
Hi @Luis M The firing strengths can be obtained from the 5th output argument of the 'evalfis' command. Howevern note that this ...

quasi 2 anni fa | 0

Risposto
Membership function not plotting right
Hi @Juan Lopez Specifying the number of data points (numPoints) in the 'plofmf' command to plot for each MF will solve the prob...

quasi 2 anni fa | 0

Risposto
Problem in curve fitting using curvefitter app
Hi @Farkhanda Azmi I fitted the data using a logarithm function: %% Data load('yvalues_curvefit_case.mat'); y = y3a_DOD_...

quasi 2 anni fa | 0

Risposto
My Numerical Solution doesn't align with the exact solution
Hi @Prince Nino Perhaps you should verify the results with your Professor. You can also change the initial condition. %% Numer...

quasi 2 anni fa | 1

Risposto
What system of ODE's does Simscape Electrical's DC Motor Block use?
Because and , therefore . Note that you already have the term in your differential equation .

quasi 2 anni fa | 0

Risposto
Matlab ODE 4.5 Runge Kutta problem solver. Can't get it to work for one problem set.
Hi @DJ V You forgot to supply the values for l and n. theta = 0; phi = 0; psi = 0; Ctheta=cos(theta); Cphi = cos(phi); Cp...

quasi 2 anni fa | 0

Risposto
Very large output numbers
Hi @Marcos Proper transfer function should have the degree of the numerator less than or equals to the degree of the denominato...

quasi 2 anni fa | 0

Risposto
Matlab code does not run past a certain point: i.e. buffers at a certain line of code
Hi @Jhryssa If your professor is not a disciplinarian, then there is nothing wrong with using the standard gravitational parame...

quasi 2 anni fa | 0

Risposto
Create a generic x for (x,y) plot
Hi @Flip Reutelingsperger Perhaps, you can plot like in this example: % Time vector timeStr = ["10:23:55", "10:24:00", "10:24...

quasi 2 anni fa | 0

Risposto
Why the Kf_LMax value is increased beyond its limits. Is their is any logical error Kindly help me out .
Hi @Ehtisham If the gains and stay constant or vary very slowly during each phase, then you can consider applying the followi...

quasi 2 anni fa | 0

Risposto
Periodic result using ode45 while simulating a parachute decent with 6DOF dynamics
Hi @mekg_10 At first, I thought you were trying to duplicate the results of the paper by attaching a parachute to the Mars EDL....

quasi 2 anni fa | 0

Risposto
Why the Kf_LMax value is increased beyond its limits. Is their is any logical error Kindly help me out .
Hi @Ehtisham The previous answer attempts to provide a logical explanation for why the 'Kf_L'​ variable exceeds the desired upp...

quasi 2 anni fa | 0

Risposto
Why the Kf_LMax value is increased beyond its limits. Is their is any logical error Kindly help me out .
Hi @Ehtisham I am unfamiliar with your equation, but it appears that you did not "mathematically" impose the desired upper limi...

quasi 2 anni fa | 0

Risposto
The problem is to calculate unknowns and plot graph for Nu vs time.
Hi @MADHVI Your original code runs without error in MATLAB online. However, I have included annotations in the comments to expl...

quasi 2 anni fa | 0

Risposto
PI controller tuning in hall sensor FOC example
Hi @Rohan In the Thesis, you can probably explain like that "When the 'Tune' button is clicked, the Simulink PID Tuner does...

quasi 2 anni fa | 1

| accettato

Risposto
simulink is giving unexpected simulation answer
Nope, not stable. The reason you got the high oscillations exponential decay response is because there are not enough samples fo...

quasi 2 anni fa | 1

| accettato

Risposto
matlab data how to read the fuzzy data in matlab ?
I believe that you will have to manually enter the numeric data from the Table. I don't know, but two parameters might be relate...

quasi 2 anni fa | 0

Risposto
I wan to find the branch currents using mathematical expression
Hi @Zeeshan The system appears to be linear; however, it is a 9th-order system (see Abel's Impossibility Theorem). Therefore, y...

quasi 2 anni fa | 0

| accettato

Risposto
The same plotting problem, it is appear that one of the marker does not show on the graph but it should have been properly plot and the legend has shown properly too
Hi @Elisa The idea is to reposition the legend box to a region that it doesn't block the green dot. max_l = 1.00; max_a =...

quasi 2 anni fa | 0

Risposto
How can model a nonlinear PID pressure and volume controller for medical ventilator application.
Hi @Amlakie Setargew You can refer to the modeling of a positive-pressure medical ventilator system using Simscape here: https...

quasi 2 anni fa | 0

Risposto
Can I use Fuzzy Logic Designer in the online version of matlab?
Sure can, if you have the toolbox, you can design, test, and tune a fuzzy system using the Fuzzy Logic Designer app.

quasi 2 anni fa | 0

Risposto
Simulate closed loop system with saturated controller output in Matlab
Hi @Cedric Kotitschke It is entirely possible to simulate a closed-loop system in MATLAB using the ode45 solver. Since ode45 so...

quasi 2 anni fa | 0

Risposto
linearized-pendulum-error plot
Hi @Manuel Hess It's late, but here is how you can make the comparison. % Parameters g = 9.80665; % standa...

quasi 2 anni fa | 0

Risposto
How to resolve "Out of memory" error?? please look into the following code
Hi @Manish Kumar From the simulation below, you can observe when the solutions begin to blow up. Do you really intend to log th...

quasi 2 anni fa | 0

| accettato

Carica altro