create a script for w = x^2cos(1/x)
이전 댓글 표시
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개)
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!