Community Profile

photo

Govind Narayan Sahu


Last seen: 11 months 前 自 2018 起处于活动状态

Followers: 0   Following: 0

统计数据

  • Explorer
  • First Review
  • First Answer

查看徽章

Feeds

排序方式:

提问


How to make a transfer function minimum phase?
Dear MATLAB Community, I have a plant Transfer Function which is non minimum phase. I want to make it stable minimum phase syst...

11 months 前 | 0 个回答 | 0

0

个回答

提问


Why State-space output giving unstable behavior in designing Kalman filter
Hello MATLAB Community, My final objective is to find a Kalman filter gain matrix. I have expanded state space matrix, A, C fro...

1 year 前 | 0 个回答 | 0

0

个回答

已回答
How to solve this problem: Not enough input arguments. Nonlinear equations, Vegstein
use @ symbol with f1 as given below: [x1f1_vegstein,k] = veg(@f1,1.4,1.8); After that you will get the root but also get the...

4 years 前 | 0

已回答
I need to create a matrix with for loop.
clear;clc n =1:1:3; for i = 1:length(n) A{i} = [n(i) 0; 0 2*n(i)] AA = blkdiag(A{:}) end

6 years 前 | 0