Write a program in C to compute y(1) correct upto 4 decimal places using Euler's method for the following differential equation: dy/dx=x+y with y(0) = 1 taking step length 0.1.
%f is used to scan every float-type value the user inputs. At the beginning of the programm the computer asks for 4 values (x0, y0, xn and h) so it's necessary to repeat the %f 4-times and the you use the pointers (&) in order to match the input numbers with the float-values. For example: { float a, b; printf("Give values for a and b"); scanf("%f %f", &a, &b); ... } Hope I helped.
explore more video on numerical method by visiting our playlist
Aap ka explain karane ka tarika hume bahut achchha laga,👍👍👍👍👍👍
Ur video made me understand this method very easily .really helpful.👍
Very helpful
Good and informative
Excellent. Very Informative Sir. Can you please guide me to the C program that solve differential equations using Euler's Method,
Very good
Excellent video!!!
Write a program in C to compute y(1) correct upto 4 decimal places using Euler's method for the following differential equation:
dy/dx=x+y with y(0) = 1
taking step length 0.1.
Make a video on iterative and jacobi method...
Could you make please euler improved?
please creat video on solving system of linear equation in c language
Sir ji please matrix multiplication ki c program video bna do
Sir please make a program on modified euler
sir plz make a program on trapezoidal rule
Sir Euler's modified pe program!?
How to program second order differential equation in c language???
why %f is written 4 times in the start of program?kindly answer as early as possible
%f is used to scan every float-type value the user inputs. At the beginning of the programm the computer asks for 4 values (x0, y0, xn and h) so it's necessary to repeat the %f 4-times and the you use the pointers (&) in order to match the input numbers with the float-values.
For example:
{
float a, b;
printf("Give values for a and b");
scanf("%f %f", &a, &b);
...
}
Hope I helped.
@@lefterisv1088thnx man
Sir can you mke a program on modified Euler's method
I will try and as soon as possible I will uploaded it
Please sir jldi say upload krain
It's not working in Dev C++
Wow