# threeViews3D **Repository Path**: iDMatlab/threeViews3D ## Basic Information - **Project Name**: threeViews3D - **Description**: matlab绘制3D投影图代码案例 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-06-09 - **Last Updated**: 2022-06-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # threeViews3D ## 案例 ``` clc;clear;close all; t = linspace(-10,10,1000); xt = exp(-t./10).*sin(5*t); yt = exp(-t./10).*cos(5*t); P=plot3(xt,yt,t,'-o','MarkerIndices',200); %P=plot3(xt,t,yt,'color','k'); setP = threeViews3D(P); setP.Color('r','b','c') setP.LineStyle('-','-','-') setP.LineWidth(1,1,1) % setP.Marker('o','p','>') % setP.MarkerSize(1,1,1) % setP.MarkerEdgeColor('r','b','c') % setP.MarkerFaceColor('r','b','c') axis equal ``` ![输入图片说明](img/image.png) ![输入图片说明](img/image2.png)