Skip to content Skip to navigation

Connexions

You are here: Home » Content » Cálculo de constante C para el encontrar los valores de seno(θ) y coseno(θ)

Navigation

Content Actions

  • Download module PDF
  • Add to ...
    Add the module to:
    • My Favorites
    • A lens
    • An external social bookmarking service
    • My Favorites (What is 'My Favorites'?)
      'My Favorites' is a special kind of lens which you can use to bookmark modules and collections directly in Connexions. 'My Favorites' can only be seen by you, and collections saved in 'My Favorites' can remember the last module you were on. You need a Connexions account to use 'My Favorites'.
    • A lens (What is a lens?)

      Definition of a lens

      Lenses

      A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

      What is in a lens?

      Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

      Who can create a lens?

      Any individual Connexions member, a community, or a respected organization.

    • External bookmarks
  • E-mail the author

Recently Viewed

Cálculo de constante C para el encontrar los valores de seno(θ) y coseno(θ)

Module by: Luis Moreno

Summary: This constant must be the input at xo

lightgraygray0.5

Contents

  • Numero de iteraciones
  • n iteraciones
  • Grafica de constante C en funcion de n
  • Referencias

%  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;

Numero de iteraciones

n=18;

n iteraciones

for i=0:n-1

    temp=cos(atan(2^(-i)));

    C=temp*C;

    C1=[C1 C];

end

C1=C1(2:end);

Grafica de constante C en funcion de n

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

Figura 1
calcCcos_01.png

Referencias

- Jack E. Volder The CORDIC Trigonometric Computing Technique IRE Transcactions EC-8, 1959, 330-334

Comments, questions, feedback, criticisms?

Send feedback