Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Solutions to test 2The sine function | ||||||||
Added: | ||||||||
> > | Here is the source code of the 3 functions of mysin.
https://afnog.iotworkshop.africa/pub/Embedded_Systems/SolutionsToTest2/mysin.tar.gz
The mySin function calculated the sin function but this time takes the angles in degrees instead of taking it it radians as the sin function in the math library does. It converts degrees into radians and calls the math library sin function whose result it returns to the caller (callMySin)
The main routine simply calls mySin with an angle of 30°
This is the result when running callMySin:
![]() The Makefile is part of the mysin.tar.gz package Command Line Parameters
MakefilesCC, CFLAGS, RM, $@ and $^ are all macros hello and clean are targets hello.c is a dependency $(RM) translates into rm -f which removes the listed files but does not print a warning message if one of the listed files does not exists. $@ is the target and expands into hello @^ is the dependency and expands into hello.c | |||||||
-- ![]() Comments\ No newline at end of file | ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Added: | ||||||||
> > |
Solutions to test 2The sine function--![]() Comments |