create a script for w = x^2cos(1/x)
조회 수: 4 (최근 30일)
이전 댓글 표시
x = linspace(-1,1,100)
what is w
댓글 수: 1
KALYAN ACHARJYA
2021년 2월 25일
편집: KALYAN ACHARJYA
2021년 2월 25일
w is the output result.
x = linspace(-1,1,100);
w=x.^2.*cos(1./x);
plot(x,w);
Do google MATLAB Onramp
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!