How to doI plot F(x) = [1 -(10/x)]/[1-(100/x^2)] for X ranging from 100 to 1100 at an interval of 50?
조회 수: 2 (최근 30일)
이전 댓글 표시
F(x)= [1- (10/x)]/[1-(100/x^2)]
댓글 수: 0
답변 (2개)
Stephan
2021년 5월 10일
F = @(x) (1-(10./x))./(1-(100./x.^2));
x_vals = 100:50:1100;
plot (x_vals, F(x_vals))
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!