Simple question but i can't do it i just started using matlab

조회 수: 1 (최근 30일)
Huseyin Kaan
Huseyin Kaan 2022년 10월 4일
댓글: James Tursa 2022년 10월 4일
how can i do this please help
0<a<1 and draw graph of y=a^x
  댓글 수: 1
James Tursa
James Tursa 2022년 10월 4일
What have you done so far? What specific problems are you having with your code? A single graph? Or multiple x-y graphs for various values of a? Or ...?

댓글을 달려면 로그인하십시오.

채택된 답변

Benjamin Thompson
Benjamin Thompson 2022년 10월 4일
x = 1:5;
a = 2;
y = a.^x;
plot(x, y);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Directed Graphs에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by