Plot z= sin(x+y) in C#
Plot z= sin(x+y) in C#
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Abhishek JaiswalPosted Dec 23, 2013, 12:40 PM
Jignesh TrivediPosted Dec 23, 2013, 6:12 AM
hi,
To plot your equation you must sample values of x and y...
find out the value of z from x and y and create the collection of two z, sin(x+y)
using Math.Sin method you can get value of sin...
for example
double x, y, z;
x = 30;
y = 30;
z = System.Math.Sin(x + y);
are you use any control to plot this equation ?