cordicasin
Description
Examples
Calculate CORDIC Inverse Sine
Compute the inverse Sine of a fixed-point fi
object using a CORDIC implementation.
a = fi(-1:.1:1,1,16);
b = cordicasin(a);
plot(a, b);
title('Inverse CORDIC Sine');
Calculate CORDIC Inverse Sine with Specified Number of Iterations
Find the inverse sine of a fi
object using a CORDIC implementation and specify the number of iterations the CORDIC kernel should perform. Plot the CORDIC approximation of the inverse sine with varying numbers of iterations.
a = fi(-1:.1:1,1,16); for i = 5:5:20 b = cordicasin(a,i); plot(a,b); hold on; end legend('5 iterations','10 iterations',... '15 iterations','20 iterations')
Input Arguments
x
— Numeric input
scalar | vector | matrix | multidimensional array
Numeric input, specified as a scalar, vector, matrix, or multidimensional array.
Data Types: single
| double
| int8
| int16
| int32
| int64
| uint8
| uint16
| uint32
| uint64
| fi
Complex Number Support: Yes
niters
— Number of iterations
scalar
The number of iterations that the CORDIC algorithm performs, specified as
a positive, integer-valued scalar. If you do not specify
niters
, the algorithm uses a default value. For
fixed-point inputs, the default value of niters
is one
less than the word length of the input array, theta
.
For double-precision inputs, the default value of niters
is 52. For single-precision inputs, the default value is 23.
Data Types: single
| double
| int8
| int16
| int32
| int64
| uint8
| uint16
| uint32
| uint64
| fi
Output Arguments
theta
— Inverse sine angle values
scalar | vector | matrix | n-dimensional array
Inverse sine angle values in rad.
Version History
Introduced in R2018b
Ouvrir l'exemple
Vous possédez une version modifiée de cet exemple. Souhaitez-vous ouvrir cet exemple avec vos modifications ?
Commande MATLAB
Vous avez cliqué sur un lien qui correspond à cette commande MATLAB :
Pour exécuter la commande, saisissez-la dans la fenêtre de commande de MATLAB. Les navigateurs web ne supportent pas les commandes MATLAB.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)