y=a*b^x

4 次查看(过去 30 天)
Jeyhun Mansurov
Jeyhun Mansurov 2020-12-2
How to plot an equation that looks like y=a*b^x? i have values for x and y.
  3 个评论
Jeyhun Mansurov
Jeyhun Mansurov 2020-12-2
can u explain more? i have only worked with linear, and second grade equations. thank you
Houman Rastegarfar
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)
For more information, see plot.
-Houman

请先登录,再进行评论。

回答(1 个)

Setsuna Yuuki.
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)

类别

Help CenterFile Exchange 中查找有关 Graphics 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by