Delete first 8 bits of data
古いコメントを表示
Hi. I want ask a question. If I got a variable that store values from an array. For example, A=[11111111 00000000]. How do I delete the data of 11111111 after the first looping is done? Assume that there have 2 looping. Thanks.
回答 (1 件)
Azzi Abdelmalek
2013 年 2 月 24 日
編集済み: Azzi Abdelmalek
2013 年 2 月 24 日
You can't write
A=[11111111 00000000]
because it gives
A=[11111111 0]
If you have
A=['11111111'; '00000000']
A(1,:)=[]% will remove 11111111
カテゴリ
ヘルプ センター および File Exchange で MATLAB についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!