Thomas Merlo
Followers: 0 Following: 0
Statistics
0 Questions
2 Answers
RANK
2,678
of 295,495
REPUTATION
22
CONTRIBUTIONS
0 Questions
2 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
10
RANK
of 20,240
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,991
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
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...
4 years ago | 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)]);
6 years ago | 10