Finding the length of square function
이전 댓글 표시
Hello, I'm using the square function. I want to find the length of it based on my limits. How can I do that since the square root is discontinues. Regards, Dimo
댓글 수: 4
John D'Errico
2020년 12월 7일
Be far more clear about what you are trying to do. You want to find the length of a function? Are you asking to compute the arc length? Next, of what function? Be explicit, else we will spend time showing you how to solve the wrong problem.
Dimo Iordanov
2020년 12월 8일
편집: Dimo Iordanov
2020년 12월 8일
Rik
2020년 12월 8일
Did you try to google how to calculate the arc length of a function in Matlab?
Dimo Iordanov
2020년 12월 8일
채택된 답변
추가 답변 (1개)
Rafael Hernandez-Walls
2020년 12월 8일
t2=t(find(diff(X)>0));
t1=t(find(diff(X)<0));
long_time=t2(2)-t1(2)
카테고리
도움말 센터 및 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!