I want to use between two values while plotting

1 次查看(过去 30 天)
I need to draw a graph which my ''a'' value must be between 0 and 1 and graph is a.^x
Shortly i want a.^x graphic and ''a'' has to go 0 to 1
I tried something like this but didn't work
a=(0,1);
y=a.^x;
plot(x,y)
i don't know how to set ''a'' 0 to 1. If i have another mistake(s) please help me!

采纳的回答

KSSV
KSSV 2022-10-4
a=linspace(0,1,50) ;
x=linspace(0,1,50) ;
[X,Y] = meshgrid(a,x) ;
Z=X.^Y;
surf(X,Y,Z)

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by