Community Profile

photo

Wagih Abu Rowin


Last seen: plus de 2 ans il y a Actif depuis 2016

Followers: 0   Following: 0

Statistiques

  • First Review
  • First Answer

Afficher les badges

Feeds

Afficher par

A répondu
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...

plus de 3 ans il y a | 0

A répondu
How do I reverse the y-axis in image?
set(gca,'Ydir','reverse')

plus de 5 ans il y a | 12

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

presque 6 ans il y a | 9

A répondu
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

plus de 7 ans il y a | 0