概述
close all;clc;clear all;
testpoint=[2 0];
original=[0 0];
% plot
dirextion=[3,3];
quiver(0,0,testpoint(1),testpoint(2),'g','LineWidth',2);
hold on;
quiver(0,0,dirextion(1),dirextion(2),'r','LineWidth',2);
hold on;
afterMul=dirextion'*testpoint;
quiver(0,0,afterMul(1),afterMul(2),'b-','LineWidth',1);
grid on;
legend('Original','Direction','Original^T*Direction')
最后
以上就是和谐灯泡为你收集整理的MATLAB向量画图的全部内容,希望文章能够帮你解决MATLAB向量画图所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复