photo

Wagih Abu Rowin


Last seen: casi 3 años hace Con actividad desde 2016

Followers: 0   Following: 0

Estadística

  • First Review
  • First Answer

Ver insignias

Feeds

Ver por

Respondida
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...

más de 3 años hace | 0

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

casi 6 años hace | 12

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

alrededor de 6 años hace | 9

Respondida
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

casi 8 años hace | 0