How to reshape an matrix made from an input turned into a double value?

1 view (last 30 days)
str= input('Please enter message here: ','s' );
n= double(str);
a= reshape(n,2,2);
encrypt = [110,2221;213,4769];
h=a*encrypt;
disp(h)
This code returns the error:
Error using reshape To RESHAPE the number of elements must not change.
Error in Luke_FLeenor_Matlab_Project (line 11) a= reshape(n,2,2);
What can I do to reshape that array?
  1 Comment
Walter Roberson
Walter Roberson on 16 Oct 2016
Your reshape will fail unless your string has exactly 4 characters.
If you have an even number of characters, reshape(n, [], 2)

Sign in to comment.

Answers (1)

Massimo Zanetti
Massimo Zanetti on 17 Oct 2016
Your code only works for 4-characters long strings because you are reshaping them to 2x2 matrix.

Categories

Find more on Resizing and Reshaping Matrices 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!