标签: matlab math sin cosine angle
我正在编写需要实现一些数学方程式的MATLAB代码。我尝试写入Matlab代码的等式是:
Result = X cosTheta - Y sin Theta
其中
X = (x1-x2) Y = (y1-y2)
我的解释是:
Result = (X*cos(Theta)) - (Y*sin(Theta))
通过将X cos Theta乘以X代表cos(Theta)是正确的,还是我需要编写不同的代码?
X cos Theta
X
cos(Theta)