Summary: This constant must be the input at xo
lightgraygray0.5
% Calculo de constante C para
% calculo de cos(theta) y seno(theta)mediante CORDIC
% Programador: Ing. Luis Moreno Yaguana
% UTPL-GESE
% ISTEC-RedDSP
clc
C=1;
C1=0;
n=18;
for i=0:n-1
temp=cos(atan(2^(-i)));
C=temp*C;
C1=[C1 C];
end
C1=C1(2:end);
plot(0:n-1,C1)
grid on
xlabel('n','FontWeight','Bold');
yt=ylabel('Value of C','FontWeight','Bold');
axis([0 n min(C1)-0.01 max(C1)])
C
lightgray
C =
0.6073
black
|
- Jack E. Volder The CORDIC Trigonometric Computing Technique IRE Transcactions EC-8, 1959, 330-334