I need to find the y values at x=0 for the data provided below

4 Ansichten (letzte 30 Tage)
Jordan DiBona
Jordan DiBona am 15 Feb. 2021
Beantwortet: Abhishek Gupta am 18 Feb. 2021
function h = circle(x,y,r)
x=-55.05;
y=-484.68;
r=544.42;
hold on
th = 0:pi/50:2*pi;
xunit = r * cos(th) + x;
yunit = r * sin(th) + y;
figure(1)
h = plot(xunit, yunit);
title('Circle Diagram')
xlabel('P[MW]'), ylabel('Q[MVAR]')
hold off
end
  1 Kommentar
Walter Roberson
Walter Roberson am 16 Feb. 2021
Do you mean the y values at xunit == 0 ?
... And if you do, what do you want to do if xunit does not cross zero? Or if it only touches 0 instead of there being two points?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Abhishek Gupta
Abhishek Gupta am 18 Feb. 2021
Hi,
Assuming, from y at x = 0, you mean yunit at xunit = 0, the yunits for the given values of x, y, and r would be as follows: -
theta = [acos(-x/r); (acos(-x/r) + pi)]; % th values at xunit = 0
Yunits = r*sin(theta) + y; % yunit values at xunit = 0

Kategorien

Mehr zu Testing Frameworks finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by