photo

Japheth Gielen


Active since 2016

Followers: 0   Following: 0

Statistics

MATLAB Answers

4 Questions
0 Answers

RANK
286,687
of 300,697

REPUTATION
0

CONTRIBUTIONS
4 Questions
0 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
0

RANK
 of 21,043

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 170,187

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

  • Thankful Level 1

View badges

Feeds

View by

Question


If I have functions written that require a user input, how would I test different points without copy and pasting the code over and over again?
This is the code I have: x = input('Type a value for x: '); for i = 1:9 vec(i) = (-1)^(i+1)*x^(2*i-1)/factorial(2*i-1...

9 years ago | 1 answer | 0

1

answer

Question


How do I write a function to find the taylor series expansion of sin(x) to the 9th term?
I am asked to create a function file to evaluate the value of sin(x) accurate to 9 Taylor Series terms. I know there is a way to...

9 years ago | 1 answer | 0

1

answer

Question


How do I graph a constant within a function?
I was given x = .5*g*t^2 where x is the position of an object at time t and g is the acceleration. I was asked to "cre...

9 years ago | 1 answer | 0

1

answer

Question


How can I evaluate a function at a vector and plot the returned values?
Using this function code: function [y1,y2] = f(x1) y1 = 6*sin(x1) + cos(2*x1) y2 = 12*sin(2*x1) + cos(4*x1) end I n...

9 years ago | 1 answer | 0

1

answer