回答済み
PI Controller Tuning for totem pole Pfc
Hi @Barath Narayanan I forgot to ask the PI values you obtained from sisotool. Please check if the performance requirements are...

4年弱 前 | 1

| 採用済み

回答済み
Calculate the area of geometry
Hi @Minh If you know the point coordinates of the geometry, perhaps you can explore the area() function. x = [0 2 1.5]; y = [...

4年弱 前 | 0

回答済み
Finding the function of the supremum
Hi @Aysel Alimirzayeva I'm not sure if the following is what you want. But this 1st-order transfer function (taking the Laplace...

4年弱 前 | 1

回答済み
Simple PID Controller with Simulink
Hi @Jeff Dillon Not a VTOL person, but from the free-body diagram, Newton's 2nd Law can be applied with the basic assumptions o...

4年弱 前 | 1

| 採用済み

回答済み
How to plot this function?
@Juan Vicente Probably the plot looks like this: syms x y fimplicit(log(abs(y/(y + 1))) == -1/x, [-5 5 -10 10])

4年弱 前 | 1

| 採用済み

回答済み
Rounding towards zero or from zero
Hi @Nick Austinos Does this work for you? x = 3.6; y = floor(x)

4年弱 前 | 1

回答済み
Throttle Command to Torque Command
Hi @Tamas Can you possibly find out the formula or relationship between the Throttle_position and the Torque_command? If you d...

4年弱 前 | 0

回答済み
Matlab code for solving nonlinear equations
Since you generally asked for any three nonlinear equations, I guess you just need to constrain the solver/algorithm to take onl...

4年弱 前 | 1

回答済み
Find the minimum of a function
Hi @Melika Eft The constrained optimization problem probably can be formulated like this: fun = @(x) x(1)^2 + x(2)^2; x0 = [...

4年弱 前 | 2

| 採用済み

回答済み
How can I compute envelope for three phase current?
You can try if the envelope function works for you. https://www.mathworks.com/help/signal/ref/envelope.html

4年弱 前 | 1

回答済み
Plot of magnetic field
@Prem, Not exactly sure what you asked. If you are asking about plotting in MATLAB, then use this function: help plot If you ...

4年弱 前 | 0

回答済み
Vehicle speed calculation script
Hi @Prabaharan A Here is a basic script to calculate the average vehicle speed: Distance = 200; % km Duration...

4年弱 前 | 0

回答済み
Add 2 trigonometric functions, with conditions
Are you trying to plot the addition of two sinusoidal functions, even when there are discontinuities? x = linspace(-1, 1, 200...

4年弱 前 | 1

| 採用済み

回答済み
hi every one i need series for erfc(x) match with it in plot
Hi @sura Are you looking for something like this? syms x sympref('PolynomialDisplayStyle', 'ascend'); f = erfc(x); ...

4年弱 前 | 1

| 採用済み

回答済み
how to change the fall time of step input in simulink
Hi @Swasthik Baje Shankarakrishna Bhat, You reuse the same syntax. I created a general one so that you can enter the desired pa...

4年弱 前 | 0

回答済み
Finding peak in the Gaussian like function which Value is unknown.
Hi @Jae-Hee Park Can you try if the findpeaks function works for your application? You can also find some examples here: http...

4年弱 前 | 0

回答済み
Fuzzy Logic display results
Hi @strat For this requirement, we can try the dictionary Object (newly introduced in R2022b) to map the FIS output (Fan Speed ...

4年弱 前 | 0

回答済み
how to change the rise time of step input in simulink
Hi @Swasthik Baje Shankarakrishna Bhat Edit: I created a general one so that you can enter the desired ramp up parameters: % u...

4年弱 前 | 1

| 採用済み

回答済み
How to use output of one fuzzy logic system as input for another?
Here is a simple example, where the output from the first FIS is fed into the second FIS. If the dual system is designed correc...

4年弱 前 | 0

回答済み
find the value/s of the membership function when a crisp value is given???
Hi @Gadelhag M Omar Mohmed, It might be a little late answering this. But a data-driven Mamdani Fuzzy System can be generated ...

4年弱 前 | 0

回答済み
Finding the relative orientation to a robot
Hi @Pawel Grum Generally, you can the transformation matrix to obtain the relative orientation. For simplicity, you can try stu...

4年弱 前 | 2

| 採用済み

回答済み
how to reduce fuzzy rules generated by mamdani fis
With almost a thousand rules for 8 inputs, I guess there are 6 inputs with 2 fuzzy sets, 1 input with 3 fuzzy sets, and another ...

4年弱 前 | 1

回答済み
how to code transfer function
@Cesar Cardenas, Try something like this: tau0 = 2; tau1 = 3; Gp = tf(1, [tau1 1],'InputDelay', tau0) For more info, plea...

4年弱 前 | 1

回答済み
help with smooth curve
@Felix Obite, Have you looked into interp1() function? Check out the first example: https://www.mathworks.com/help/matlab/ref/...

4年弱 前 | 0

回答済み
Velocity vs Time graph in matlab
Hi @Sandun, I'm also new as to this kind of problem, with , strictly from the mathematical notation perspective. I think item ...

4年弱 前 | 0

回答済み
I am looking to plot the following set of equations. Can someone please help me out with this
Let me try helping. I don't know about your functions and their parameters. But here is a basic example: Say we want to plot ...

4年弱 前 | 1

回答済み
How to get the fuzzy value of an input when the crisp value is given
The evalmf() function can used in this situation. help evalmf x = -10:0.1:10; mf = fismf("pimf", [-9 -7 2 7]); y = evalmf(...

4年弱 前 | 0

回答済み
How do I solve this simultaneous equation below
Hi @Adam Verify with MATLAB: x = roots([1 1 -6]) Can I leave you to find as a simple exercise?

4年弱 前 | 0

回答済み
Fuzzy controller giving constant output of z = 0.5 (z range [0,1])
There is nothing wrong. The reason the Crisp Output starts from is because the linear MF is chosen and the range of the Output ...

4年弱 前 | 0

回答済み
help me in degree of membership function correction in fuzzy logic tool with new membership function creation
That's because the amplitude of your custom function depends on the value of . If it is not designed as , then the upper bound o...

4年弱 前 | 0

さらに読み込む