Calculate the right Riemann sum of f(x)=x^2+2x-1 on the interval I=[0,2] with 4 regular portions.
조회 수: 1 (최근 30일)
이전 댓글 표시
I am getting this error " Execution of script riemansum as a function is not supported".Can someone help?
댓글 수: 2
Yusuf Suer Erdem
2021년 11월 21일
편집: Yusuf Suer Erdem
2021년 11월 21일
I used it with this way. It was working properly but I was not able to select 4 regular points.
syms x
rsums(x^2+2*x-1,0,2)
Walter Roberson
2021년 11월 21일
The first executable word of file riemansum.m is not "function", so MATLAB considers the file to be a script that can be executed but not called.
What is the first non-comment non-blank line of riemansum.m ?
채택된 답변
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!