views:

592

answers:

2

What's the Matlab way to draw a Bezier curve ? Do you have to prgoram it yourself ?

I am not looking for a user made routine, but am asking if Matlab offers a standard way to draw them.

+1  A: 

After looking and searching through the documentation, my answer is No: you'd have to go with one of the 3rd party implementations.

Likeliest candidate would be the interp family functions, and they implement no Bezier interpolation.

mvaz
Thx. As I said in the other answer: I am actually asking this because I saw my son programming a Bezier curve himself in Matlab, I know that every drawing program implements this so I seemed to me that a program as Matlab should have this too.
Edelcom
A: 

You can try this, http://www.cnblogs.com/begtostudy/articles/1787709.html

Begtostudy

related questions