answersLogoWhite

0


Best Answer

You can compute sin(x) manually/numerically using Taylor's Series.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you sinx without using mathh or built in sin function Any Algorithm to implement sin function?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

In a spreadsheet a built in formula is called?

In a spreadsheet a built-in formula is called a function.


What is the different between the structure of cell and function of a cell?

The structure is how it's built and what it's built of. The function is what it does and how it does it.


What does A built-in calculation such as SUM or AVERAGE called?

That's called a built-in function; or often simply a "function".


What is a built-in calculation such as SUM or AVERAGE is called?

If built-in it is a function. If the user types it into a cell, it is a formula.


Does the TI-89 have a built-in function that returns the number of elements in a list or matrix?

Yes, the in-built dim() function


How do you modulate in matlab without using matlab tools?

You would have to write your own code for a modulation (Matlab has a convolution function not in the tools), otherwise you can use its built in function in the signal processing toolbox.


When were the rooms and their functions built?

The rooms were built in 1982; their function... well I don't know what do you mean by 'builiding a room's function'.


What is a built-in formula that uses arguments to calculate information?

an is a built in formula that uses arguments to calculate information. is FUNCTION


Who many in built function in c?

Zero.


What are built in function?

Write in Pascal is an example: it doesn't come from a library, it is built-in into the compiler.


What is built-in function in c?

There are no built-in functions in C++. The definition of a built-in function is a function that does not need to be declared before it is used, but every function in C++ is user-defined and must be declared before it can be used. This includes functions provided by the C++ standard library which we declare by including the appropriate headers.Some articles mistakenly describe keywords such as while, switch and if as being built-in functions, however these are statements, not functions.C++ does provide several built-in operators, some of which look and behave very much like functions. For example, the built-in sizeof() operator can be used without any declaration and looks very much like a function, but its argument is not a value, it is a type name, and we cannot (easily) define a function that accepts a type name as an argument.The built-in typeid() operator also takes a type name argument, but it is often mistakenly regarded as being a user-defined function because we must include the C++ standard library header in order to use it. But that header is only required because the return value is a std::typeinfo object which is not a built-in data type.Unlike sizeof() and typeid(), the default global new and delete operators can be overridden with user-defined function operators, thus these are also mistakenly regarded as being built-in functions. However, only the overrides are functions because that's the only way to define an operator overload; the default global operators are built-in operators, not built-in functions.The semantic difference between a built-in operator and a built-in function may seem insignificant, however a real built-in function would be no different to a user-defined function other than the fact that it need not be declared before using it. But a user-defined function also has identity (a memory address) and we can pass that identity to other functions using a function pointer argument. But we cannot pass a built-in operator to a user-defined function because it has no identity, thus it cannot be regarded as being a built-in function.


What is built-in calculation such as SUM or AVERAGE is called?

If built-in it is a function. If the user types it into a cell, it is a formula.