필터 지우기
필터 지우기

i just want to plot y=x in matlab mobile

조회 수: 2 (최근 30일)
precious agbagharauka
precious agbagharauka 2022년 1월 5일
댓글: precious agbagharauka 2022년 1월 7일
i just want to plot y=x in matlab mobile

채택된 답변

Walter Roberson
Walter Roberson 2022년 1월 5일
syms x
y = x;
fplot(y)
or
x = linspace(-10,10);
y = x;
plot(x, y);

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by