Community Profile

photo

upinderjeet


Active since 2013

Statistics

  • Thankful Level 1

View badges

Content Feed

View by

Question


Need some help with function call
Hello I am trying to call this function from a code in m-file. function [] = DiffOCV( k,DYNData,model) OCVfr...

9 years ago | 1 answer | 0

1

answer

Question


Bubbels not connecting in plot command
Hello I am using the following code and want the figure(2) to have bubbles connected with the 2 dashed lines(as you can see ...

9 years ago | 1 answer | 0

1

answer

Question


analytical problem to find auto-correlation for a state space system
This is the problem from the topic of mean and covariance propagation in a state space system with random noise inputs Consi...

9 years ago | 0 answers | 0

0

answers

Question


How to define the bin size for a histogram
Hello I have 2 questions. I am trying to create 100 bins for my histograms which covers actually 10000 data points. The co...

9 years ago | 1 answer | 0

1

answer

Question


Is there any command to calculate both the downside and upside gain margins from the Nyquist plot
I understand we can use the command 'margin(sys)' to get the gain margin of the system. But as you all know some systems might h...

10 years ago | 0 answers | 0

0

answers

Question


How to solve Kalman Filter equation using ode45
the kalman filter equation is: Xhatdot=A*Xhat+L[Y-C*Xhat] where Y is the measurement and the measurement equation is descr...

10 years ago | 0 answers | 0

0

answers

Question


how to integrate a function whose values are represented by a set of data points at time t instead of continuous function of time t
I have a 't' vector(161 elements) from 0 secs to 4secs. By default Matlab has broken it to be : 0 0.0000 0.0000 ...

10 years ago | 2 answers | 0

2

answers

Question


how can I set the matrix gain values to be the function of time 't' in simulink's gain block .
I other words. I want matrix gain K to be a vector of dimention 2 by 1. And both of these elements of these gain vector should b...

10 years ago | 0 answers | 0

0

answers

Question


How to do solve Riccati differential(matrix) equation backward
the matrix Riccati differential equation: dX/dt = A'X + XA - XBB'X + Q ** I have seen the exactly same topic in my search...

10 years ago | 1 answer | 0

1

answer

Question


how to get updated value of function everytime in the loop
*Hello. I am using the below code in the loop and here is the problem area. When I use the code(following)* for i=1:100, G...

10 years ago | 1 answer | 0

1

answer

Question


How can I implement a simple difference equation and plot the resulting output, all using MATLAB
I have a simple case of all initial conditions to be zero. We can consider a general form as: a0y(n) = b0x(n) + b1x(n-1) + b...

10 years ago | 4 answers | 0

4

answers

Question


"DOUBLE cannot convert the input expression into a double array. If the input expression contains a symbolic variable, use the VPA function instead."
*My command window code is:* syms L C gamma lambda k K X U FOG SOG u1 u2 u3 eps1 eps2; C=u1^2+3*u2^2+2*u3^2; L = u1*u2+2*u...

11 years ago | 1 answer | 0

1

answer

Question


"Conversion to logical from sym is not possible." error shows up when I try to execute the following comands
X=.25;U=1; >> eps1=.05;eps2=.05; >> k=1; >> while (abs(C-gamma))>=eps1 X=X-inv(Cx)*(C-gamma); if abs(C-gamma)<eps1 if abs...

11 years ago | 1 answer | 1

1

answer

Question


How can I use the symbolic expression with a logical OR operator...(both being parts of the condition for a while loop)
I am trying to create a while loop as follows: while (abs(C(X,U)-gamma)>=eps1)||(abs(Lbar_u(X,U))) if abs(Lbar_u(X,U...

11 years ago | 0 answers | 0

0

answers

Question


How can I pass vector argument to a gradient and jacobian functions i.e. I want to be able to calculate gradient and jacobian at a particular point say X=[1 2] or U=[3 4]
I tried the following code in the command window: L= x1^2+x2^2+u1^2+u2^2+2*x1*u1+2*x2*u2; >> Lx=gradient(L,X) Lx = ...

11 years ago | 0 answers | 0

0

answers

Question


Function in M file doesnt recognize the variable L defined in the command window
When I make a function call in the command window by making vector argument X by writing Lx(X)which is defined in M file as fol...

11 years ago | 2 answers | 0

2

answers