Thomas Merlo
Followers: 0 Following: 0
Feeds
已回答
Multiple Callback Functions
try putting all the function names in a single string: hMenu = gcf; set(hMenu,'MenuBar','none'); h = uimenu(hMenu,'Label','Mu...
Multiple Callback Functions
try putting all the function names in a single string: hMenu = gcf; set(hMenu,'MenuBar','none'); h = uimenu(hMenu,'Label','Mu...
4 years 前 | 0
已回答
How to connect two points with a line
put each point in an [x y] vector: p1 = [1 2], p2 = [3 4]. Then plot plot([ p1(1) p2(1)], [p1(2) p2(2)]);
How to connect two points with a line
put each point in an [x y] vector: p1 = [1 2], p2 = [3 4]. Then plot plot([ p1(1) p2(1)], [p1(2) p2(2)]);
6 years 前 | 10