Delete first 8 bits of data

3 views (last 30 days)
Willam Willam
Willam Willam on 24 Feb 2013
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.

Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 24 Feb 2013
Edited: Azzi Abdelmalek on 24 Feb 2013
You can't write
A=[11111111 00000000]
because it gives
A=[11111111 0]
If you have
A=['11111111'; '00000000']
A(1,:)=[]% will remove 11111111

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

No tags entered yet.

Products

Community Treasure Hunt

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

Start Hunting!