回答済み
Given the below differential equation representing a continuous-time system, where 𝑦(𝑡) and 𝑥(𝑡) are the system output and input respectively
Hi @bugrahan ilgaz For Q1, I think you can use tf() to build the continuous-time system transfer function and then find its zer...

4年以上 前 | 1

| 採用済み

回答済み
Getting empty solution for second order differential equation
Hi @Gopalji Kalojiya I believe that the question never ask you to find the analytical solution of the damped pendulum system, b...

4年以上 前 | 1

回答済み
how i start?
@shamsa khalid I'll give a general idea. You need to search some functions on the help documentation. The chart is essentially...

4年以上 前 | 0

回答済み
Solving a System of 2nd Order Nonlinear ODEs
Hi @mpz A few days ago, you have learned how to uncouple the ODEs by using the substitution method in this link: https://www.m...

4年以上 前 | 1

| 採用済み

回答済み
How can i find roots of laplace function?
Hi @cagri sarac If it is already in the transfer function form, then you can use the pole() function to find the roots of the d...

4年以上 前 | 0

回答済み
Plot the line Tangent at a given point
Hi @ILoveMath As a self-proclaimed math lover, I presume that you already know mathematically how to find the tangent line by h...

4年以上 前 | 1

| 採用済み

回答済み
generate a sine wave that ends at 0
Hi @Ali Albaidhani Are you trying to make the Sine wave to hit 0 at the end of the simulation? f = 159.2; % frequency Fs...

4年以上 前 | 1

| 採用済み

回答済み
How to read The value shown for R in 10^n
Hi @Gabriel Foloni The residue(num, den) function is commonly used in the partial fraction decomposition. The [r, p, k] are a...

4年以上 前 | 0

回答済み
How does the graph look like?
Hi @Thomas Ling Jia Feng I think your problem is related to the convolution of vectors and . Please check if the examples i...

4年以上 前 | 0

回答済み
Calculating the eigen vectors without using eig function but using a data set, the transpose of the data set and a unit vector
Hi @Zachary David Can consider an alternative approach by finding the characteristic polynomial of a matrix using poly() http...

4年以上 前 | 0

回答済み
to find the state space representation of an underwater AUV
Hi @BISWAJIT NAIK You can try learning how to use the System Identification Toolbox to create the dynamical system model from m...

4年以上 前 | 1

| 採用済み

回答済み
Plotting of solutions using Newton Raphson method for a nonlinear function
Hi @Supriya Khatoniar Check if this script is helpful. You can adjust plot properties to suit your preferences. function Demo_...

4年以上 前 | 0

回答済み
State space model with disturbance
Hi @Mohammed Yakoob I refer to the state-space system from another post that you opened in the link: https://www.mathworks.com...

4年以上 前 | 1

回答済み
solve a fuzzy logic problem
Hi @Elysi Cochin Take this slowly. First, specify what those 4 inputs to the fuzzy system are, and the outputs of the fuzzy sy...

4年以上 前 | 0

回答済み
How to you plot these graphs
Hi @JOY OMULAMA Appreciation is insufficient. You have to do your due diligence, by clearly knowing what you want to do through...

4年以上 前 | 0

回答済み
How to distribute data as Gaussian?
Hi @Nadatimuj This is just one of many possibilities to distribute the number of colors to 10 people according to the Gaussian ...

4年以上 前 | 0

回答済み
Hello I've been trying to find a way to make the value of 'a' a non-zero number
Hi @Reginald Ayirebi Aboagye If and are non-zeros, the exact solution is given by , where is the initial value of at time ...

4年以上 前 | 0

回答済み
What is the role of [] in ode?
Hi @채원 이 If the system is , then you can solve the ODEs as follows: kp = 1; kd = 2; F = @(t, x) [x(2); ... ...

4年以上 前 | 0

回答済み
Solving a System of 2nd Order Nonlinear ODEs
Hey @mpz It doesn't work that way because you have created an algebraic loop error where depends y5 that is your , which depen...

4年以上 前 | 2

| 採用済み

回答済み
how i can evaluate LTI system on matlab
Hi @Hamza Daud If the Ordinary Differential Equation (ODE) of Linear Time-Invariant system (LTI system) is in state-space repre...

4年以上 前 | 0

回答済み
Why is it that when I try to open "rltool" from the command window, the "control system designer" window opens but remains blank?
Hi @Gabriele Curcio Can you try if sisotool works? sys = tf(1, [1 1]); sisotool(sys) Can also enter controlSystemDesigner(sy...

4年以上 前 | 2

| 採用済み

回答済み
why this equation is not ploting
Hi @shiv gaur Simulating the Hindmarsh–Rose model requires solving the differential equations using some numerical ode solvers....

4年以上 前 | 0

回答済み
What is the best way to plot many curves as a parameter changes?
Hi @Riccardo Scorretti I think @Giuseppe is trying to plot the potential energy around one of the 5 Lagrangian Points in the Ea...

4年以上 前 | 0

回答済み
Help with newton-raphson
Hi @Ethan Cole The method presented by @Torsten satisfies your requirements in your assignment. Here is an alternative. The mai...

4年以上 前 | 1

回答済み
Solving Freedom System using Runge Kutta and Adams Bashford method
Hi @Lucy Martin This is the script for the mass-spring-damper system using the Runge–Kutta 4th order Solver. You can compare th...

4年以上 前 | 2

| 採用済み

回答済み
I want to make 4 clusters using k mean clustering and for each of the 4 clusters i want to set centroid initially and then accordingly make the cluster. how can I.
@Maimoona Asad Have you successfully estimated the centroids and closed this issue?

4年以上 前 | 0

回答済み
Help with the below question
Hi @Amy Topaz I think you can use the max() function. max(B(1,:)) max(B(2,:)) max(B(3,:)) max(B(4,:)) max(B(5,:))

4年以上 前 | 0

回答済み
How to plot a step response of symbolic laplace and inverse laplace function
Hi @Ralph Sparrow Here is the MATLAB script: clear all; clc % Define symbolic variables syms s t y(t) Y(s) D1y = diff(...

4年以上 前 | 0

回答済み
How can I use the array of data into a formula to calculate and get the data.
Hi @Aung Moe Zaw Please check if the following results are expected. function [] = call_spring() t = 0:0.001:5; y0 = [0, 0...

4年以上 前 | 1

| 採用済み

回答済み
Calculate mean value between 2 years
@Anh Duong I think the M = mean(A) function will do the job. Give it a try. https://www.mathworks.com/help/matlab/ref/mean.htm...

4年以上 前 | 0

さらに読み込む