Why is my matrix deformed?
조회 수: 1 (최근 30일)
이전 댓글 표시
edit : ı added code ı wrote.
%%%%%Code%%%%
clc;
clear;
clear all;
a = [0:0.1:360];
b = a.*pi/180;
c = sind(a);
d = cos(a);
e = c./d;
f = d./c;
T = [a;b;c;d;e;f];
str1 = 'angle';
str2 = 'radian';
str3 = 'sin';
str4 = 'cos';
str5 = 'tan';
str6 = 'cot';
fprintf('%s %s %s %s %s %s\t',str1,str2,str3,str4,str5,str6);
fprintf('%.1f %.4f %.4f %.4f %.4f %.4f\n',T);
%%%%code%%%%%
답변 (1개)
madhan ravi
2018년 12월 17일
편집: madhan ravi
2018년 12월 17일
fprintf('%s %s %s %s %s %s\n',str1,str2,str3,str4,str5,str6);
^--- not t
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!