标签: matlab sin
theta = (0:0.01:2*pi) r = sin.^2.*(theta) + cos.^2.*(theta)
它返回给我这个错误;
使用sin时出错。没有足够的输入参数。
我很困惑,我需要改变什么?
答案 0 :(得分:1)
我认为正弦平方可以用以下两种方法完成:
sin(x).*sin(x)
或
sin(x).^2
答案 1 :(得分:1)
r = (sin(theta)).^2 + (cos(theta)).^2