how to reshape the matrix
Show older comments
i have matrix =001001001111011101111;
and i want to convert it to
001
001
001
111
011
101
111
i know reshape function
matrix=reshape(matrix,[],3);
but it not get the answer which i need
Accepted Answer
More Answers (1)
Sai Bhargav Avula
on 18 May 2020
Edited: Sai Bhargav Avula
on 18 May 2020
Hi,
Try the following code
convert matrix to char
matrix ='001001001111011101111';
matrix=reshape(matrix,[],3);
Hope this helps!
7 Comments
Shehab Tarek
on 18 May 2020
Edited: Shehab Tarek
on 18 May 2020
Sai Bhargav Avula
on 18 May 2020
I didnot understand,
if you need a 7*1 array, try this code and operate over the result
matrix ='001001001111011101111';
matrix=string(reshape(matrix,[],3));
This results in a 7*1 string array and can operate over them like
bin2dec(matrix(3));
Stephen23
on 18 May 2020
"i want to know why you convert the double matrix to string "
Because Sai Bhargav Avula:
- did not actually solve the question you asked.
- did not actually check their output against your expected output.
- used a pointless data type conversion that does not actually solve either of 1. or 2.
Sai Bhargav Avula
on 18 May 2020
Edited: Sai Bhargav Avula
on 18 May 2020
From the question
I understood that the input is
matrix= 001001001111011101111;
and not an array.
and from the comment to the other answer I understood that the expected output to be 7*1 martix and not a 7*3 matrix, with each row to be 3 bit value created from matrix variable.
"I understood that the input is..."
If the input is either:
- a character vector of '0' and '1' characters, or
- a numeric vector of 0 and 1 values,
then exactly the same operations (reshape and transpose) can be applied to get the requested order.
"I understood that the expected output to be 7*1 martix and not a 7*3 matrix"
This is certainly possible, but does not resolve that your code still put the wrong input elements in the wrong locations. Converting it to a 7x1 string array does not fix that.
>> matrix ='001001001111011101111';
>> matrix=reshape(matrix,[],3) % your code
matrix =
001
011
110
011
011
101
011
Lets compare your output against the requested output given in the original question:
your: original:
001 001
011 001
110 001
011 111
011 011
101 101
011 111
Converting to string will not fix that your code put the incorrect elements in each row.
Discussion of input class and output type conversion are simply distractions from that.
Shehab Tarek
on 18 May 2020
Edited: Shehab Tarek
on 18 May 2020
Sai Bhargav Avula
on 18 May 2020
Edited: Sai Bhargav Avula
on 18 May 2020
Thanks for the explanation and clearing my confusion Stephen Cobeldick,
I was thinking more about matrix being a single value(matrix = 001001001111011101111) and not an array( [0 0 1 .....]) and output to be a single colum vector (7*1) and overlooked the expected result .
The answer should have been like what David answered
matrix ='001001001111011101111';
matrix= string(reshape(matrix,3,[])');
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!