I want to write y=2.^x exponential function
but my matlab program doesn't work
because the function doesn't cogniz ToT
and I want to draw by using the plot sencense
y=2.^x
xinv=[0 10]
plot(x,y)
How do I that...?? plz say the answer

 採用された回答

KSSV
KSSV 2021 年 8 月 10 日

0 投票

x = linspace(0,10) ;
y=2.^x ;
plot(x,y)

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeLabels and Styling についてさらに検索

質問済み:

2021 年 8 月 10 日

回答済み:

2021 年 8 月 10 日

Community Treasure Hunt

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

Start Hunting!

Translated by