I got the answer the function give output as value{1} = '1001' and value{2}='1100'. I was storing it as i= value(1) so it used to store it as i={'1001'} but when I tried i=value{1} so it stored correctly i = '1001'
I am dividing 8bit binary value to two 4 bits values. How not to get "{}" these bars with my output
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
MUHAMMAD ISLAM
am 30 Sep. 2021
Kommentiert: MUHAMMAD ISLAM
am 1 Okt. 2021
I am using the function
result=dec2bin(I(i,j),8);
value = mat2cell(result,1,[4,4]);
Now I want to store the "value" in some variable but I get it in {'1001'} form and I need it in simple 1001 or '1001' form with the curly I cannot perform any function.
I want to convert the value '1001' to decimal but the function "bi2de()" do not work on it.
thanks
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Dave B
am 30 Sep. 2021
Bearbeitet: Dave B
am 30 Sep. 2021
The function mat2cell converts to a cell array, which is shown with {} and which you can retrieve the values with the same {}
result=dec2bin(58,8)
value = mat2cell(result,1,[4 4])
value{1}
bin2dec(value{1})
value{2}
bin2dec(value{2})
cellfun(@bin2dec, value)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!