Respondida
i want to find the solution of this second order differential equation
Possibly does not have a closed-form solution. f = @(x, y) [y(2); ... y(1)*2.869*(3.06693 - (3.125*x^0.1))]; tspan = linsp...

alrededor de 4 años hace | 0

Respondida
How do I solve a symbolic system for a certain vector?
Hi @Vítor Narciso It's an interesting problem as mentioned by @Paul. The following does not solve your problem symbolically in ...

alrededor de 4 años hace | 2

Respondida
how can i see a points(x,y) value from a matlab plot
Also try this: datacursormode x = linspace(-10, 10, 201); y = x.^2; plot(x, y, '.') dcm = datacursormode; dcm.Enable = 'on'...

alrededor de 4 años hace | 0

Respondida
Please help to get answer of this particular problem, which I won't understood, If A=[1 12 15;3 16 20;5 24 25] what will be the value of 'a' if [a b]=size(A)?
@kapil Jadhav Since the matrix A is [3-by-3] matrix, then [a b] = size(A) returns a = 3 % number of rows b = 3 % numbe...

alrededor de 4 años hace | 1

Respondida
Sine wave with variable frequency
Like this? x = linspace(0, 6*pi, 6001); y = cos(0)*sin(0.3*x.^2); plot(x, y, 'linewidth', 1.5) Use the Interpreted MATLAB ...

alrededor de 4 años hace | 0

Respondida
set parametre fractional Transfer Function block
@bilel kanzari, try if this works: set_param('FOPID_Model3eme_critq/LOW', 'polePoly', 's^3.3 + 11s^1.7 + 32s + 25');

alrededor de 4 años hace | 1

| aceptada

Respondida
CC CV control with Frequency modulation
Hi @SALAH alatai Try following the examples on using these functions to extract the mathematical model. https://www.mathworks...

alrededor de 4 años hace | 0

Respondida
field-oriented control for induction motor
Hi @ayoub reffai Don't give up! If you can extract the mathematical model (differential equations / state-space model) from t...

alrededor de 4 años hace | 1

| aceptada

Respondida
How to make the following shape in Matlab
Hi @Med Future Edit: Make good use from @Walter Roberson's polynomial regression model of the second pulse from the OP's second...

alrededor de 4 años hace | 0

Respondida
my plot is not showing up
Now it should work EG = (1 + n2*Vf)./(1 - n2*Vf); %Es/Gm plot(Vf, EG);

alrededor de 4 años hace | 1

Respondida
How to solve coupled odes with two time dependent variables with ode45?
Hi @Ari Dillep Sai Not sure what went wrong and why it is unstable. If you are absolutely sure that the absorption dynamics is ...

alrededor de 4 años hace | 1

Respondida
Want to Plot a multi line graph in Matlab
Like this? x = 2:0.01:16; y1 = 15*x + 270; y2 = (6.6964e-04)*x.^4 - (2.6786e-02)*x.^3 + (9.0625e-01)*x.^2 - (1.2768e+01)*x + ...

alrededor de 4 años hace | 1

| aceptada

Respondida
Hello how can I change k values from MATLAB?? I need a script to control these values. Please help me!!
Okay, please use the MATLAB optimized nominal K values: Kp = 1 + sqrt(2); Ki = 1; Kd = 1 + sqrt(2);

alrededor de 4 años hace | 0

Respondida
Create a simple map for a robot to travel on
Hi @Sebastian Jäger The following articles maybe informative for you in creating maps: https://www.mathworks.com/help/nav/re...

alrededor de 4 años hace | 0

Respondida
Logic/formulas of temperature contoller of heat pump compressor
Hi @Anton Frik Thermal system is commonly described as a 1st-order system, thus it is common for the control logic to use Propo...

alrededor de 4 años hace | 0

Respondida
Searching for Minimum of a function
Hi @Iliana Zheleva You should analyze the function so that you get to see where the solution might be and it allows you to gues...

alrededor de 4 años hace | 1

| aceptada

Respondida
How to tune this Transfer Function using Zieger nichols or Cohen coon
@Isyraf Izuddin There is a typo in the denominator: s^3 I think that Ziegler-Nichols and Cohen-Coon methods are more suitable...

alrededor de 4 años hace | 1

| aceptada

Respondida
1/0.8x^2+0.5x+2
Okay @Fernando Cerna Sanchez Based on the order of operations using PEMDAS: Parentheses, Exponents, Multiplication and Division...

alrededor de 4 años hace | 0

Respondida
how to use simulink block
You need 5 blocks and connect them in this sequence from the Left to the Right. Begin with the *Clock block* and that's the ...

alrededor de 4 años hace | 0

Respondida
sigmoid pid equation in matlab
Hi Shah I'm curious to to see how your designed Kp looks like. What is the pid equation? Edit: Kp is a nonlinear proportional...

alrededor de 4 años hace | 1

| aceptada

Respondida
compensator with pole in RHS of s-plane
Basim, you should run a few more simulations under different conditions to verify if the approach works. After that, you should ...

alrededor de 4 años hace | 0

Respondida
Solve a numerical function
Hi Issam From the advice of Mr. Roberson, you can create 3 equations from the data points: 691.5802655 = Ge + (G*0.01093...

alrededor de 4 años hace | 0

Respondida
ode45,ODE23 , force is not a time dependent function
Hi Gloria You can load data on Excel to Workspace and then use the function interp1(t,Fy,Ts) to interpolate the data set (t,...

alrededor de 4 años hace | 1

Respondida
Solving a Simulink Function with Algebraic Loop
Hi @Taha Batur Topsakal This article explains about the Algebraic Loop Concepts: https://www.mathworks.com/help/simulink/ug/al...

alrededor de 4 años hace | 0

Respondida
Solve a system of 4 non linear equations with symbolic expressions
Hi @Nordine Bouchelia You can follow the examples in https://www.mathworks.com/help/optim/ug/fsolve.html to create a function...

alrededor de 4 años hace | 1

Respondida
How do I plot time vs. velocity with a matrix in Simulink ?
@Nuri Efe TATLI In MATLAB, if a matrix M is given, then this would be: t = M(:,1); % 1st column V = M(:,2); % 2nd col...

alrededor de 4 años hace | 2

| aceptada

Respondida
Designing an Observer - Control System
It's a 5th-order system and by choosing relatively large poles (almost 10,000 times), the computation becomes numerically sensit...

alrededor de 4 años hace | 0

Respondida
Solve equation system with ode45
Hi Laura First thing first, there are 4 state variables which can be defined (on a piece of paper) by x(t) = z(1) ...

alrededor de 4 años hace | 0

Respondida
How do I rewrite this transfer function into the form shown below
Hi @Eden Pfanner You can see the following example to learn how to convert a model from one representation to another using the...

alrededor de 4 años hace | 1

| aceptada

Respondida
Dear esteem researchers, please I need help on how to simulate wind gust disturbance effect on quad-copter using simulink...?
Hi @ALABA PHILIP OPAYEMI I think this is how you connect the Sine Wave block (external disturbance) to the Quadcopter system (S...

alrededor de 4 años hace | 2

| aceptada

Cargar más