Statistiques
5 Questions
0 Réponses
RANG
169 491
of 302 049
RÉPUTATION
0
CONTRIBUTIONS
5 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
100.0%
VOTES REÇUS
0
RANG
of 21 520
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 178 520
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
How would I use a while loop to get a certain amount of inputs from a described interval?
The problem asks for inputs for 3 constants (a,b,c) and an x value to output y depending on the value of x. bascially there's...
presque 8 ans il y a | 1 réponse | 0
1
réponseQuestion
How would I find the roots of given function y=x^4-x-4
Problem Description: Write a code that will find the roots (or zeroes) of a given function by using the Newton-Raphson method...
presque 8 ans il y a | 1 réponse | 0
1
réponseQuestion
How could I write a script which iterates from 1 to 9 and performs the following operation?
Problem description: The script should iterate from 1 to 9 to produce the expressions on the left, perform the specified oper...
presque 8 ans il y a | 1 réponse | 0
1
réponseQuestion
How do I create and call a function which returns the sum of the series (2n)*r^(2n+1), prompting the user for values r and n?
Problem description: Write a script in which you input a real number r and a positive integer n. Call the function funser, wh...
presque 8 ans il y a | 1 réponse | 0
1
réponseQuestion
how do I plot cos^2(2x) for x values between 0 and pi/2? specifically a figure with 25 points and a figure with 50
figure(1); x=linspace(0, rad2deg(pi/2), 25); y=(cosd*(2.*x)).^2; plot(x, y) this is my attempt for the first figure and I ...
presque 8 ans il y a | 2 réponses | 0
