В задаче выполнить аппроксимацию кривыми Безье, сделать не с прямыми, а с цифрой 6. - Maple
Но у меня выходит ошибка:
Error, beziercurve is not a command in the plottools package
Error, (in plots:-display) expecting plot structure but received: curve
Как её исправить?
Вот код:
point1 := [0, 0]; point2 := [1, .5]; point3 := [0, 1]; point4 := [.5, 1.5]; point5 := [1, 1]; point6 := [0, 1.5]; curve := plottools[beziercurve]([point1, point2, point3, point4, point5, point6]); plots:-display(curve);