MATLAB: By default one radio button is selected in button group but i want in initial no radio button is selected with Buttongroup

button groupMATLAB

Button group

Best Answer

That does not appear to be possible in R2014b or later. It appears to me that the first button added to a uibuttongroup automatically has its Value set to 1.
Your options are:
  1. set() the Value of the first button to 0 after it is added to the uibuttongroup; or
  2. create a junk button first and add it to the uibuttongroup, and then after the other buttons are added, delete the junk button.