Community Profile

photo

Sam Chak


Last seen: Today Active since 2020

Statistics

  • Thankful Level 3
  • 24 Month Streak
  • Guiding Light
  • Knowledgeable Level 5
  • Revival Level 1
  • First Answer

View badges

Content Feed

View by

Answered
Unrecognized function or variable 'i1'.
Hi @Dan Giffin I think you can do something like this: t = 0:0.01:10; f1 = 1/10; f2 = 1/5; % Call the function ThreeFun...

12 hours ago | 1

Answered
Creating a Smith Chart with load impedance only
Hi @Adham Elkhouly I'm not well-versed with plotting Smith Chart. But starting R2023b, the smithplot() function replaces the sm...

23 hours ago | 0

| accepted

Answered
Can't solve the equations
Hi @Della I assume you want to plot something similar to this. However, please note that the solution set depends on the initia...

24 hours ago | 0

Answered
odextend initial guess error
Hi @구구 I believe the issue may be related to inconsistent initial values. Under normal circumstances, the subsequent extended s...

1 day ago | 0

Answered
How can I make a function that has an input that cake take handle both scalar and array values?
Hi @Samiyah Maybe you want to display the result like this? numSides = 4; sideLengths = [1, 2]; polygonArea(numSides, sid...

2 days ago | 0

Answered
solve this rk's 4th orderr
Hi @tushar Look up this function, then write the basic code, post the code here by clicking this icon . help ode45

2 days ago | 0

Answered
solve() "Unable to find explicit solution"
Hi @Andrew If this is related to deriving the transfer function using Laplace transform, then I prefer using the isolate() func...

2 days ago | 2

Answered
How to add disturbance to system to check robustness of my MPC controller
Hi @Ashutosh I seldom employ MPC due to the challenges associated with deterministically controlling the controller's behavior ...

2 days ago | 0

Answered
Input variable "trimf" does not exist.
Hi @Ceferino Some syntax issues. They are fixed as shown below: fis = mamfis; fis = addInput(fis, [0 100], "Name", "input_tem...

3 days ago | 0

| accepted

Answered
Incorrect Dimensions for matrix multiplication
Ld=(0:0.001:5); % <-- array is first defined here, but does not appear in Rtf L=0.007; Ta=25; h=375; Kf=175; Kd=0.032; ...

3 days ago | 0

Answered
How I can separate a matrix that is not positive definite, into two matrices?
Hi @hossen hassanzadth Your expression "" appears to resemble an attempt at performing a Cholesky decomposition. However, it's ...

3 days ago | 1

| accepted

Answered
How I can plot input signal in ode45
Hi @hossen hassanzadth Your initial query has already been addressed. To achieve step profile tracking using your designed gain...

3 days ago | 1

Answered
How can we solve time dependent non linear equations?
Hi @Shadab Ali Do you expect complex-valued solutions? x0 = [3i 3i 4]; % there are 7 other solutions % x0 = [ ...

3 days ago | 0

Answered
How to replace pi by a linear quadratic regulator inside the v/f scalar method to control speed of an induction motor?
@Luc RABE: Is this feasible when designing LQR regulator? It depends on whether the transfer function represents a first-order ...

4 days ago | 1

| accepted

Answered
How can I train ANFIS using Particle Swarm Optimization algorithm ?
Hi @Ahmad For the new data "heart_dataset.csv" with 13 inputs to 1 output, the Subtractive Clustering method will generate 209 ...

4 days ago | 0

Answered
I am getting different outputs when using lsim vs ode45 when solving second order coupled differential equations
Hi @Ethan Nobre The reason for the discrepancy between the 'lsim()' solution and the 'ode45()' solution is due to the differenc...

4 days ago | 0

| accepted

Answered
How can I train ANFIS using Particle Swarm Optimization algorithm ?
Hi @Ahmad The output (target) of the patient data constitutes a Boolean function, yielding values from a two-element set {0, 1}...

5 days ago | 2

| accepted

Answered
solving ODE by analytical & numerical solution
You are welcome, @승언 김. If you find the solutions helpful, please consider clicking 'Accept' ✔ on the answer and voting 👍 for it...

5 days ago | 1

Answered
solving ODE by analytical & numerical solution
Hi @승언 김 There are a few approaches to solving linear differential equations without the Control System Toolbox. Here is one of...

5 days ago | 1

| accepted

Answered
What is the problem with my code because i would like to get the same result as in the picture. Can you help me?
Hi @Luc RABE From the image you provided, the sampling time is definitely much shorter. I picked Ts = 0.02. Check the book. I b...

6 days ago | 2

| accepted

Answered
Obtain natural frequencies of a structural model.
Hi @Jorge Garcia Garcia Since the natural frequencies are related to the eigenvalues of the structural system, I believe you ca...

7 days ago | 0

| accepted

Answered
iam trying to solve a system of differential equations of car model using ode45 but I am always get an error
Hi @Mostafa Salah, The code is quite messy, with numerous unformatted local functions scattered throughout, making it visually ...

7 days ago | 0

| accepted

Answered
How do I simulate mini solar panels in series on MATLAB?
Hi @Aleena For beginners, it is usually recommended to derive the mathematical model of a typical system from some governing la...

7 days ago | 1

Answered
Hey there, I need some help with this error. Would anyone be willing to provide guidance?
HI @Danikha Shyken For a fixed-step solver, you can modify the settings in the Solver tab of the Configuration Parameters dialo...

7 days ago | 0

| accepted

Answered
Need Help Understanding the 'oceanwave()' Function
HI @Vaishnavi P I regret to inform you that I am not an oceanographer. From the context, it appears that you are most likely a ...

7 days ago | 1

| accepted

Answered
I need to put this block diagram in MATLAB (not in Simulink) and I do not know how to do it
Hi @Carlos Puente When utilizing the syntax s = tf('s') to establish a special variable 's', you gain the ability to directly f...

7 days ago | 0

Answered
un modelo de control de robot scara no compila en simulink, se queda parado en 1%, ¿como puedo solucionarlo?
Hola @Marcel Lolita Hoyos Muñoz Sospecho que ha ocurrido una singularidad en el robot SCARA al 1% del tiempo de simulación. La ...

8 days ago | 0

Answered
How do I alter the curve of my plot
g = 9.81; v = 85; i_h = 0:0.25:95; h_f = 0; % Equations: t being time and d being distance t = sqrt(2*i_h\g); d = (85*sqr...

8 days ago | 0

Answered
How To solve this equation?
Hi @Alif Here is the numerical approach. format long g x = 1:1000; y = (nthroot(5*x + 2, 5))./x; S = sum(y)

9 days ago | 1

Answered
How to plot the following function?
Hi @Reema Noor You can find some good examples related to plotting some functions in these links: https://www.mathworks.com/he...

9 days ago | 0

Load more