Matlab代码绘制曲线切线 [英] Matlab code to draw a tangent to a curve

查看:1740
本文介绍了Matlab代码绘制曲线切线的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要在特定点绘制一条曲线的切线(例如,该点由用户选择).我编写了一个代码,允许用户手动拾取两个点,然后在它们之间绘制一条线.但是我想使过程自动化.有人可以建议任何算法/已经实现的matlab代码来这样做吗?

I need to draw a tangent to a curve at a particular point (say the point is chosen by the user). I have written a code that allows the user to manually pick up two points and then a line is drawn between them. But I would like to automate the process. Can someone please suggest any algorithms/already implemented matlab codes to do so?

推荐答案

尝试以下功能.当然,需要对它进行大量调整才能应用到您的案例中,但是我认为这基本上是您想要的.

Try the function below. Of course, it needs lots of tweaking to apply to your case, but I think this is roughtly what you want.

function test

    hh = figure(1); clf, hold on
    grid on

    x = 0:0.01:2*pi;
    f = @(x) sin(x);
    fprime = @(x) cos(x);

    plot(x, f(x), 'r')
    axis tight

    D = [];
    L = [];
    set(hh, ...
        'WindowButtonMotionFcn', @mouseMove,...
        'WindowButtonDownFcn', @mouseClick);


    function mouseMove(varargin)

        coords = get(gca, 'currentpoint');
        xC = coords(1);

        if ishandle(D)
            delete(D); end
        D = plot(xC, f(xC), 'ko');

    end

    function mouseClick(obj, varargin)

        switch get(obj, 'selectiontype')

            % actions for left mouse button
            case 'normal' 

                coords = get(gca, 'currentpoint');
                xC = coords(1);
                yC = f(xC);

                a  = fprime(xC);
                b  = yC-a*xC;

                if ishandle(L)
                    delete(L); end
                L = line([0; 2*pi], [b; a*2*pi+b]);

            case 'alt'    
                % actions for right mouse button

            case 'extend' 
                % actions for middle mouse button

            case 'open'   
                % actions for double click

            otherwise
                % actions for some other X-mouse-whatever button

        end

    end

end

这篇关于Matlab代码绘制曲线切线的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆