y=a*b^x
조회 수: 9 (최근 30일)
이전 댓글 표시
How to plot an equation that looks like y=a*b^x? i have values for x and y.
댓글 수: 3
Houman Rastegarfar
2020년 12월 2일
Hi Jeyhun,
If you know the values of x and y, then you can use the plot function. This line of code creates a plot of the data in y versus the corresponding values in x.
plot(x,y)
-Houman
답변 (1개)
Setsuna Yuuki.
2020년 12월 2일
편집: Setsuna Yuuki.
2020년 12월 2일
For example if your y = a*cos(x), you can use plot like this:
x = 0:1e-2:20; %x values
a = 2; %can be anything constant number
y = a*cos(x);
plot(x,y)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Descriptive Statistics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!