Vipul Kumar
Followers: 0 Following: 0
Statistics
3 Questions
0 Answers
RANK
120,370
of 295,638
REPUTATION
0
CONTRIBUTIONS
3 Questions
0 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
0
RANK
of 20,255
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,207
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
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); ...
6 years ago | 0 answers | 0
0
answersQuestion
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) ...
6 years ago | 2 answers | 0
2
answersQuestion
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 ...
6 years ago | 2 answers | 0