Plotting a 2d graph
조회 수: 1 (최근 30일)
이전 댓글 표시
Can someone please help me in plotting a ellipse with a function
x^ 2 + 9y ^2 = 9
댓글 수: 0
채택된 답변
Walter Roberson
2022년 11월 24일
a = randi([1 5])
b = randi([1 5])
c = randi([3 10])
syms x y
fimplicit( a*x^2 + b*y^2 == c ); axis equal
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!