Newton-Raphson method in C

BIT0216-Habib at 08h06
09
Mar
2011
Newton-Raphson method in C

Hi guys,
I have implemented newton-raphson method in C. I am giving the code here for all of you.
Code:

#include<stdio.h>
#include<math.h>
#define e .00001
#define F(x) (x)*(x)-3*(x)+2
#define Fd(x) 2*(x)-3

int main(void){
    float x1,x2,f,fd,root;
   
About
This topic belongs to the forum
  • IT based community for everyone, managed by the students of Institute of Information Technology(IIT), University of Dhaka.

  • Numbers of topics : 2170
  • Numbers of messages : 11613
  • Numbers of users : 1941
  • Numbers of points : 310
Similar topics
Links will be upgraded depending on YOUR contributions Hi guys In this zone, we will all work together to share different algorithms(if absent in book) and flow charts as well as codes so that we can write everything in exam correctly. Start
Olivia Newton-John's Oatmeal Cookies - From her Cookbook Titled - Livwise 2 cups rolled oats. I use organic. 1 cup dessicated coconut 150 gms dried fruit of choice. Recipe says chopped dates, or substitute cranberries or Raisins or Apricots etc. 1
Ladies, I was just in AC Moore getting some Windsor & Newton brush cleaner because they had 50% off coupons today. I always get the large 32 oz. bottle that sells for $23.99 and I pay $12.00 for it. Well today I noticed they have a new black and
I don't want to pit these two against each other in any competitive sense, since both techniques and individuals have brought something remarkable to people's attention. I only want to enquire if there are similarities, or do we have two different and
“Gravity explains the motions of the planets, but it cannot explain who set the planets in motion...GOD governs all things and knows all that is or can be done.[8] This most beautiful system of the sun, planets, and comets, could only proceed from the
Forums from same category
See also
more_less
Informations

1 Replies For the topic :
"Newton-Raphson method in C"

This topic has been viewed 3097 times.

Last message :
09/03/2011 at 08h06 by "BIT0216-Habib"