Statistics
RANK
156,369
of 301,338
REPUTATION
0
CONTRIBUTIONS
2 Questions
1 Answer
ANSWER ACCEPTANCE
50.0%
VOTES RECEIVED
0
RANK
of 21,236
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 174,017
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
code for fem -constrained bar
I was trying to write a code for a horizontal two step bar constrained at both ends to determine its deflection at the three nod...
6 years ago | 0 answers | 0
0
answerseulers improved method code error
function yout=improveuler(F,x0,h,xfinal,y0); y=y0; yout=y; for x=x0:h:xfinal-h; s1=F(x,y); s2=F(x+h,y+h*s1); ...
6 years ago | 0
Question
eulers improved method code error
tried to solve ode using eulers improved method for a function of F=2xy with step size h=0.1,y0=1,x0=1 and seeking y(1.5) The ...
6 years ago | 2 answers | 0
