Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

dectobin ,only with loops and condition

3 vues (au cours des 30 derniers jours)
yuval ohayon
yuval ohayon le 19 Sep 2017
Clôturé : MATLAB Answer Bot le 20 Août 2021
hi,the algorithem of the action for finding binary number is dividing to 2,but in the homework description I need to define cell veriable.the new matrix is basically strings in the i,j place.example for a vector [97 ,2]___['1100001','00000010']. please help me to complete my task

Réponses (1)

KL
KL le 19 Sep 2017
So to convert string to number,
doc str2num
and then to assign your number in a cell array
your_cell_array = {your_number}
  3 commentaires
yuval ohayon
yuval ohayon le 19 Sep 2017
{function [ ] = dectobin( current_num) binary_num=CHAR(a) while (current_num~=0) last_bit=mod(current_num,2); current_num=(current_num-last_bit)/2; binary_num=lastbit;
} this is just the func,whre i use loops?main program? (for the indexed elements ,enter them to the new matrix)
KL
KL le 19 Sep 2017
Modifié(e) : KL le 19 Sep 2017
If you have string inputs, first you need to convert them to numbers before doing any calculations on them (such as divide or mod).

Cette question est clôturée.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by