MATLAB: I am looking for a 4×6 matrix to enter letter “A” in matlab which l will use to display as a black and white image. Helpful answer will definitely be appreciated.

alphabet matrixComputer Vision ToolboxMATLAB

For eg, this the matrix for number "4". I need the matrix for letter "A" in the same format. four=[0 1 0 1;0 1 0 1;0 0 0 1;1 1 0 1;1 1 0 1;1 1 1 1];

Best Answer

[1 0 0 1;
0 1 1 0;
0 0 0 0;
0 1 1 0;
0 1 1 0;
1 1 1 1];
Related Question