Vipul Kumar
Followers: 0 Following: 0
Statistiques
3 Questions
0 Réponses
RANG
120 370
of 295 638
RÉPUTATION
0
CONTRIBUTIONS
3 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
0.0%
VOTES REÇUS
0
RANG
of 20 255
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 154 207
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE 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); ...
plus de 6 ans il y a | 1 réponse | 0
0
réponseQuestion
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) ...
plus de 6 ans il y a | 2 réponses | 0
2
réponsesQuestion
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 ...
plus de 6 ans il y a | 2 réponses | 0