photo

Thomas Merlo


Last seen: 20 days ago Active since 2018

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
2 Answers

RANK
2,705
of 297,457

REPUTATION
22

CONTRIBUTIONS
0 Questions
2 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
10

RANK
 of 20,438

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 158,938

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

  • First Answer

View badges

Feeds

View by

Answered
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

Answered
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)]);

7 years ago | 10