답변 있음
How to do Feedback Loop on Simulink with different frequinces
Hi @Esin Derin First, you need to construct the frequency {0.1, 0.2, 0.4, 0.8, 1.6, ...} based on the following sequence that d...

대략 4년 전 | 2

| 수락됨

답변 있음
How to use different dimensions for neural network?
@d https://www.mathworks.com/help/deeplearning/ref/network.train.html Documentation says that Network inputs must be specified...

대략 4년 전 | 2

| 수락됨

답변 있음
transfer function with delay
Hi @massimiliano frasca One of the common ways is to use the Transport Delay block: You can find an example here to see wher...

대략 4년 전 | 2

| 수락됨

답변 있음
Transfer function with transfer function numerator greater than denominator
@Nguyen BaoLong Not sure how to answer this. Evaluating from the mathematical perspective, you can probably understand the foll...

대략 4년 전 | 0

답변 있음
How does genetic algorithm derive the best fitness and average fitness values for each generation?
Hi @Time N The output here in the "Output Argument", only gives basic information about the optimization process returned as a ...

대략 4년 전 | 1

| 수락됨

답변 있음
How can simulate The system with Transfer function in ODE45?
Hi @Kaito Sato-kun Most likely the culprits come from this part up_num = [alpha 0]; and this part u_dash = C*integral(@(tau)...

대략 4년 전 | 2

| 수락됨

답변 있음
How to tune this model with this PSO coding? Is there any mistake in this coding or do I need to add something?
Your code is quite long. By the way, you are using Rosenbrock function as your fitness function, not your NARX model. for i = 1...

대략 4년 전 | 0

답변 있음
block diagram cooperative adaptive cruise control
Hi @massimiliano frasca Actually, I have trouble reading that conference article. If authors set to prevent jerk, why did they...

대략 4년 전 | 2

| 수락됨

답변 있음
Experimental Design in Matlab
Hi @Valeria Gallo You can find some examples in the following links: Response Surface Designs Central composite design (CCD) ...

대략 4년 전 | 1

| 수락됨

답변 있음
How can I do SOH estimation?
Hi @ekagra gupta Yes, it can done in MATLAB. Refer to these articles for more info: Leveraging MATLAB-Simulink in Building Bat...

대략 4년 전 | 0

답변 있음
Can someone please help me modify this ABC algorithm into matlab code?
Hi @Kohani Mohan Instead of modifying your code, why not consider the available codes in File Exchange? https://www.mathworks....

대략 4년 전 | 0

답변 있음
Truss Systems Nornal Equation
Hi @Doga Ersuz From the MATLAB point of view, the lines in section marked by the single red right square bracket are all "COMME...

대략 4년 전 | 0

답변 있음
What is difference between fit and fitlm function in MATLAB?
@Meghraj Kc You read about the differences between fit and fitlm here: https://www.mathworks.com/help/stats/lime.fit.html htt...

대략 4년 전 | 0

답변 있음
Designing a solar wind hybrid power system and control it with ANFIS
Hi @Tanvir Ibn Touhid Technically answering this question probably requires writing a few chapters of a typical 200-page book. ...

대략 4년 전 | 0

답변 있음
¿Qué librería puedo instalar para trabajar con atmosfera estándar?
Hi @Mauro Gonzalez There are various standards like the following: U.S. Standard Atmosphere, atmoscoesa International Standar...

대략 4년 전 | 0

답변 있음
How to run exp in bisection method
Hi @Nadiah This fzero algorithm uses a combination of bisection and secant methods. Very efficient! 👍 fcn = @(x) exp(x) - x....

대략 4년 전 | 0

답변 있음
2x2 matrix calculation
Hi @dhlee Maybe you can solve the problem like this? syms x y Ta = sym('Ta', [2 2]); Tb = sym('Tb', [2 2]); Tc = sym('Tc'...

대략 4년 전 | 1

| 수락됨

답변 있음
Hello everyone. How can I apply fuzzy decision making to my multi-objective optimization problem using matlab codes??
Hi @Amir Hosseini Can and start learning from the examples in the Fuzzy Logic Toolbox™ Intro.

대략 4년 전 | 0

답변 있음
solve a forced vibration equation for x and w
Hi @Fatemeh Salar I guess you want solve the forced response vibration problem using the Modal Analysis approach. I'll skip the...

대략 4년 전 | 1

| 수락됨

답변 있음
Help me to plot a graph
Maybe like this? x = linspace(0, 100, 501); y = 3000 + x*250; yyaxis left plot(x, y) ylim([0 4e4]) yyaxis right plot(x, 4...

대략 4년 전 | 2

| 수락됨

답변 있음
How can I use fminsearch() to apply a sinc function (sin(x)/x) fit on my data?
@Asser Abdelgawad How about considering the nonlinear least-squares curve fitting lsqnonlin? fun = @(p) p(1)*sinc(p(2)*(xdata ...

대략 4년 전 | 0

답변 있음
Simulink automatically compute torque
Hi @Roye Vadana Then try using the Saturation block. https://www.mathworks.com/help/simulink/slref/saturation.html

대략 4년 전 | 0

답변 있음
solve a forced vibration equation for x and w
Hi @Fatemeh Salar Maybe like this? function v = dxdt(t, x) m = 1; k = 5; f = 10; M = [3*m 0; 0 m]; %...

대략 4년 전 | 1

답변 있음
How can I design a lag compensator with a specific phase margin and velocity static error constant?
Hi @Bilal Antaki More info about the open-loop transfer function of the uncompensated system should be provided. From one of G...

대략 4년 전 | 2

| 수락됨

답변 있음
how can i plot this function?
Hi @FRANCESCA CANALE Because that is not an ordinary plot, but a plot using base-10 logarithmic scale on the x-axis and the y-a...

대략 4년 전 | 2

| 수락됨

답변 있음
Solving a System of Trig Equations
Hi @Michael Boyte Back to the basics when solving the inverse kinematics problem. The kinematics of a 2-link robot arm (where t...

대략 4년 전 | 1

답변 있음
Optimization of Logistic Function Variable K for multiple Inputs Simultaneously
Hi @Ezra Sutter Is it allowed to fit using other type of function? promAngles = [146.7589 115.7733 98.1666 66.8909 41.9...

대략 4년 전 | 1

답변 있음
How to generate following signal using MATLAB script file? signal s(t) is changing its value in every 20 seconds
Hi @Pritesh Patel, This puzzle needs a little mental calculation to think. Not sure what happens after 80 s. syms t u00 = hea...

대략 4년 전 | 0

답변 있음
ode45 for Higher Order Differential Equations
Hi @d A little fix on the system of 1st-order ODEs. f = @(t, x) [x(2); x(3); x(4); 1 - x(1)^2 - 6*x(3)]; tspan = 0:0....

대략 4년 전 | 2

| 수락됨

답변 있음
Lyapunov exponent function submitted by community
Hi @Don If your experimental data is not large, then you can test lyapunovExponent() here to see if it works for your case. ht...

대략 4년 전 | 1

| 수락됨

더 보기