-1

I have an expression that I want to evaluate in MATLAB. This is a part of automatic control computation and each time I need to compute a theta(t) value which has a relationship as shown below:

MATLAB Evaluation Figure

My objective is to evaluate the left-hand side expression in the red box against row-wise equivalent right-side and obtain the actual value for t.

I will appreciate any help.

Community
  • 1
  • 1
Olatunji
  • 59
  • 5

1 Answers1

0

Assuming the Transformation Matrix is represented by T, therefore: x = T(1,4)==V(1); y = T(2,4)==V(2); z = T(3,4)==V(3); Apply linear equation solver: a=solve(x,t). To obtain the actual value of t, eval(a).

Olatunji
  • 59
  • 5