How to find the three extreme points of the curve as shown in the figure, and find the degrees of each angle of the triangle surrounded by the three points.

10 visualizzazioni (ultimi 30 giorni)
How to find the three extreme points of the curve as shown in the figure, and find the degrees of each angle of the triangle surrounded by the three points.

Risposte (2)

Ameer Hamza
Ameer Hamza il 18 Nov 2020
  3 Commenti
Wesley
Wesley il 18 Nov 2020
As shown in the figure, how to use MATLAB program to calculate the value of included angle θ?
Ameer Hamza
Ameer Hamza il 18 Nov 2020
See this example.
Create a sine wave similar to one in your question
theta = linspace(0, 3*pi);
y = -sin(theta);
plot(theta, y)
Find value of theta at minimum points
idx = islocalmin(y);
theta_min = theta(idx);

Accedi per commentare.


Wesley
Wesley il 18 Nov 2020

Categorie

Scopri di più su Fit Postprocessing in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by