photo

Glen Andrew


Last seen: 2 years ago Active since 2023

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

2 Questions
0 Answers

Cody

0 Problems
1 Solution

RANK
285,758
of 300,571

REPUTATION
0

CONTRIBUTIONS
2 Questions
0 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
0

RANK
 of 21,027

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
129,628
of 169,680

CONTRIBUTIONS
0 Problems
1 Solution

SCORE
20

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Solver

View badges

Feeds

View by

Question


How to plot a graph of 3 separate lines for the below code
what changes should be made to the below code to get a graph of 3 seperate lines, im getting 3 lines but at certain points like ...

2 years ago | 1 answer | 0

1

answer

Question


How to plot the graph for the given RK 4th order step method
syms t x g=(13950-x)/18.75 f=@(t,x) eval(g); x0=560; t0=0; t=15; h=1; for c=1:15 k1=h*f(t0,x0); k2=h*f(t0+(h/2),x0+(k1/...

2 years ago | 1 answer | 0

1

answer

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

2 years ago