用matlab绘制参数方程的曲线,其t应该要有一个范围,才能绘制其图形。
>>t=-pi:pi/10:pi
>>plot(cos(t)-sin(3*t),sin(t).*cos(t)-cos(3*t))
>>xlabel('x');ylabel('y');
运行结果