photo

Wagih Abu Rowin


Last seen: 4 years ago Active since 2016

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
4 Answers

RANK
1,656
of 300,338

REPUTATION
42

CONTRIBUTIONS
0 Questions
4 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
21

RANK
 of 20,922

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,149

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 Review
  • First Answer

View badges

Feeds

View by

Answered
How can I disable all of the objects in a "uibuttongroup" or "uipanel" at the same time?
For Matlab App Designer 2018 and up you should use 'Enable','off' as: % Here app.UIFigure is the main handel or container objec...

5 years ago | 0

Answered
How do I reverse the y-axis in image?
set(gca,'Ydir','reverse')

7 years ago | 12

Answered
how to avoid powers of 10 i.e 1.0e+03 in answers
Use format shortG >> 1.0e+03 ans = 1000

7 years ago | 9

Answered
How can I change the gridline color without changing the tick and tick label colors in MATLAB?
ax = gca; ax.GridLineStyle = '--'; ax.GridColor = [0.1, 0.1, 0.1]; grid on

9 years ago | 0