![how can i find convex and concave points - 2019 05 15.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/219701/how%20can%20i%20find%20convex%20and%20concave%20points%20-%202019%2005%2015.png)
how can i find convex and concave points
23 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Cem SARIKAYA
le 15 Mai 2019
Commenté : Star Strider
le 16 Mai 2019
how do I find the convex and concave points of the discrete data as in the photo![WhatsApp Image 2019-05-15 at 5.41.47 PM.jpeg](https://www.mathworks.com/matlabcentral/answers/uploaded_files/219686/WhatsApp%20Image%202019-05-15%20at%205.41.47%20PM.jpeg)
![WhatsApp Image 2019-05-15 at 5.41.47 PM.jpeg](https://www.mathworks.com/matlabcentral/answers/uploaded_files/219686/WhatsApp%20Image%202019-05-15%20at%205.41.47%20PM.jpeg)
0 commentaires
Réponse acceptée
Star Strider
le 15 Mai 2019
It depends on how you want to define them.
Here, I define them as points where the slope is -0.5:
f = @(x) 1-(x./sqrt(1+x.^2)); % Create Function
x = linspace(-10, 10);
h = x(2)-x(1); % Step Interval
dfdx = gradient(f(x),h); % Derivative
[~,infpt] = min(dfdx);
xpoint(1) = interp1(dfdx(1:infpt-1),x(1:infpt-1),-0.5); % Slope = -0.5
xpoint(2) = interp1(dfdx(infpt+1:end),x(infpt+1:end),-0.5); % Slope = -0.5
figure
plot(x, f(x))
hold on
plot(xpoint, f(xpoint), 'pg', 'MarkerSize',10, 'MarkerFaceColor','g')
hold off
grid
axis('equal')
xlim([-2.5 2.5])
To illustrate:
![how can i find convex and concave points - 2019 05 15.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/219701/how%20can%20i%20find%20convex%20and%20concave%20points%20-%202019%2005%2015.png)
Your data may be different, so experiment with different values for the slope to get the result you want.
9 commentaires
Plus de réponses (1)
Steven Lord
le 15 Mai 2019
Depending on what you want to do with this information (which is not clear from the question) you may find the ischange function useful.
f = @(x) 1-(x./sqrt(1+x.^2)); % Create Function
x = linspace(-10, 10);
y = f(x);
changes = ischange(y, 'linear', 'SamplePoints', x);
plot(x, y, '-', x(changes), y(changes), 'gp')
grid on
axis('equal')
xlim([-2.5 2.5])
2 commentaires
Adam Danz
le 15 Mai 2019
@Cem SARIKAYA, Steven Lord's proposal is similar to Star Strider's. In the function ischange(), when the method is set to 'linear', the slope of the line is considered and it searches for abrupt changes in the slope.
Again, take a moment to grasp these concepts conceptually before you worry about implementing the code.
Voir également
Catégories
En savoir plus sur Bounding Regions dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!