Vipul Kumar
Followers: 0 Following: 0
Statistik
3 Fragen
0 Antworten
RANG
120.353
of 295.527
REPUTATION
0
BEITRÄGE
3 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
0.0%
ERHALTENE STIMMEN
0
RANG
of 20.242
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 154.057
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
I want to round off my answer upto 4 decimal place but my code dosen't work.
function d=divided_diff(a,b,c,f1,f2,f3) p=vpa((f2-f1)/(b-a)); q=vpa((f3-f2)/(c-b)); d=(q-p)/(c-a); d=round(d,4); ...
mehr als 6 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
I want to make a function in which it takes 2 Input argument (polynomial order n , polynomial coefficient vector ) and gives the output polynomial equation f(x). Also, In the function i take input values of x and my function gives output values of f
function poly(n,V) syms x f(x)=V(1)*(x^0); for i=n:-1:1 f(x)=V(i+1)*(x^i)+f(x); end f(x) ...
mehr als 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
I want to make a programming function in which I want to take input any mathematical function like f(x)=sin(x)+x^2. then I take a input x and my function return a value of f(x).but i don't know how can i do?
I want to make a programming function in which I want to take input any mathematical function like f(x)=sin(x)+x^2. then I take ...
mehr als 6 Jahre vor | 2 Antworten | 0