Community Profile

photo

Govind Narayan Sahu


Last seen: 1 month ago Active since 2018

Statistics

  • Explorer
  • First Review
  • First Answer

View badges

Content Feed

View by

Question


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 month ago | 0 answers | 0

0

answers

Answered
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...

2 years ago | 0

Answered
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

4 years ago | 0