How to find the tangent point of a fit curve that passes through a non tangent point?
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi everyone,
I have curve that fit to data read from .xlsx file. How can I determine the tangent line as the picture below?
The number of the points is 100, so please see the xslx attached file.
Thank you.
My code:
clc
clear all
close all
filepath='c:\point for spline.xlsx';
data=xlsread(filepath,1,'a1:b99')
A_coor=data(1,:)
% --- CURVE FITTING --- %
f=fit(data(:,1),data(:,2),'pchip')
% --- PLOT THE CURVE AND POINT A --- %
plot(data(:,1),data(:,2),A_coor(1),A_coor(2),'ro')
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!