Sketch the graph using matlab
이전 댓글 표시
Using Matlab to sketch the graph of y= (x^3-1)/(√x - 3).
답변 (1개)
Star Strider
2023년 4월 17일
0 개 추천
Use element-wise operations to calculate ‘y’:
y = (x.^3-1)./(sqrt(x) - 3)
.
카테고리
도움말 센터 및 File Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!