Clear Filters
Clear Filters

Positive angles in a graph

4 views (last 30 days)
Andrea Cesaro
Andrea Cesaro on 3 Apr 2021
Commented: Andrea Cesaro on 3 Apr 2021
How can I have all positive angles in a graph, that I mean I have a graph plot(x,alfa) for example and all angles are positive, but one,180° is not positive, but negative in the graph, -180° and this messes up the graph, how can I do?

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 3 Apr 2021
%Force all angles must be positive.
mask=theta<0;
mask=360*double(mask);
theta=theta+mask;

More Answers (0)

Categories

Find more on Graph and Network Algorithms 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!