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!