04-25-2017 11:54 AM
Hi,I want to change the Riccati Equation from "-R^-1B^TPx" into "-R^-1B^T(P+delta rho)x". How I can make the VI in LABVIEW for this Riccati Equation or what should I add in LABVIEW VI for this Riccati equation.
Thanks
Solved! Go to Solution.
04-25-2017 06:26 PM - edited 04-25-2017 06:32 PM
Are you just trying to implement the equation into labview? Can you post a picture of the equation? Im not sure whether or not there are cascading powers from what you have typed (use spaces and asterisks)
otherwise, is this how you want your equation
or like this
04-26-2017 09:44 AM
Yes, Plz Find an attachment which include the Riccati Equation which I am trying to implement the equation into labview.
Best Regards
04-26-2017 09:44 AM
File
04-26-2017 05:35 PM
to be honest this will work but there might be a more elegant solution (like putting everything over R instead of multiplying it at the start)
04-26-2017 06:20 PM
You could also use Matlab script function in LabVIEW (Assuming youve got matlab installed) and run it through there with something like
R =
T =
B =
P =
Delta =
x =
u = -R^-1 * B^T * (P+Delta) * x ;