I need to create letter K with 20 pixel by 20 pixel by plotting

2 views (last 30 days)
Just start MatLab, I can plot the letter on 5x5 matrix but a 20x20 is to much
  2 Comments
John Doe
John Doe on 13 Nov 2019
Edited: John Doe on 13 Nov 2019
Hello, I figured out how to plot a letter using these scripts
n = 5; % size of matrix
x = [2 2 2 3 4 4 4 ]; % x-coordinate
y = [1 2 3 2 2 3 1 ] ; % y-coordinate
y_new = n - y; % upside down for y-coordinate
plot(x,y_new,'o','MarkerEdgeColor','b','MarkerFaceColor','b','MarkerSize',12), axis([0 n 0 n]), axis square, grid on;
Can you help me rotate this letter 90 degrees using transformation matrix.

Sign in to comment.

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 13 Nov 2019
Edited: KALYAN ACHARJYA on 13 Nov 2019
"Now I want to know how to rotate this letter 90 degrees"
n=5; % size of matrix
x=[2 2 2 3 4 4 4 ]; % x-coordinate
y=[1 2 3 2 2 3 1 ] ; % y-coordinate
y_new=n-y; % upside down for y-coordinate
figure,plot(x,y_new,'o','MarkerEdgeColor','b','MarkerFaceColor','b','MarkerSize',12), axis([0 n 0 n]), axis square, grid on;
figure,plot(y_new,x,'o','MarkerEdgeColor','b','MarkerFaceColor','b','MarkerSize',12), axis([0 n 0 n]), axis square, grid on;
  4 Comments
John Doe
John Doe on 13 Nov 2019
I need to use some kind of linear transformation matrix to rotate the image.

Sign in to comment.

More Answers (0)

Categories

Find more on 3-D Scene Control in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!