is my script having 51 equally spaced points?
Show older comments
clc;clear all;
l=25;E=200e9;I=350e-6;w=6e3;
x1=linspace(0,l/2,25)
for n = 1 : length(x1)
y1(n)=(-(w*x1(n))/(384*E*I))*(16*(x1(n)^3)-24*l*(x1(n)^2)+9*(l^3))
end
x2=linspace(l/2,l,26)
for n = 1 : length(x2)
y2(n)=(-(w*x2(n))/(384*E*I))*(8*(x2(n)^3)-24*l*(x2(n)^2) ...
+17*x2(n)*(l^2)-(l^3) )
end
x = [x1, x2];
y = [y1, y2];
plot(x,y, '.')
xlabel('x-axis,length(m)')
ylabel('y-axis,deflection(m)')
3 Comments
Roger Stafford
on 29 Nov 2014
I would say, most definitely not equally-spaced! The two functions you are plotting are quartic polynomials in which the derivatives are certainly changing over the interval plotted. Even the x values are not equally-spaced, since there are 25 values in the first half interval and 26 in the second half.
ernest
on 29 Nov 2014
Roger Stafford
on 29 Nov 2014
x = linspace(0,L,51); % I used uppercase L instead of lowercase l
x1 = x(1:25);
x2 = x(26:51);
...
Answers (1)
Image Analyst
on 29 Nov 2014
0 votes
If you want them equally spaced along the curve, you'll have to use interparc():
If you just want uniform spacing along the x, then just use linspace on x once.
5 Comments
ernest
on 29 Nov 2014
Edited: Image Analyst
on 29 Nov 2014
ernest
on 29 Nov 2014
Image Analyst
on 29 Nov 2014
Edited: Image Analyst
on 29 Nov 2014
Replace the x2 assignment with this:
deltaX = x1(2) - x1(1)
x2= l/2 : deltaX : 26;
Now x2 will have the same spacing as x1 and your combined [x1,x2] array has 51 elements. Another way using linspace() is to create the whole thing and extract the portions you want for x1 and x2:
x = linspace(0, 26, 51);
x1 = x(1:25);
x2 = x(26:end);
Don't forget to get rid of the x2 assignment in between the for loops if you do it this way!
ernest
on 30 Nov 2014
Image Analyst
on 30 Nov 2014
You're welcome. You can also "Thank" people by Accepting and "Voting" for their answers (to give them reputation points).
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!