is my script having 51 equally spaced points?
Afficher commentaires plus anciens
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 commentaires
Roger Stafford
le 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
le 29 Nov 2014
Roger Stafford
le 29 Nov 2014
x = linspace(0,L,51); % I used uppercase L instead of lowercase l
x1 = x(1:25);
x2 = x(26:51);
...
Réponses (1)
Image Analyst
le 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 commentaires
ernest
le 29 Nov 2014
Modifié(e) : Image Analyst
le 29 Nov 2014
ernest
le 29 Nov 2014
Image Analyst
le 29 Nov 2014
Modifié(e) : Image Analyst
le 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
le 30 Nov 2014
Image Analyst
le 30 Nov 2014
You're welcome. You can also "Thank" people by Accepting and "Voting" for their answers (to give them reputation points).
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!