2D triangle.
9 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
how to create a 2D triangle and save it as png or something similar file but as array of two dimensions.
0 Commenti
Risposte (1)
KSSV
il 7 Nov 2016
clc; clear all ;
C = rand(3,2) ;
% vertices of triangle
ver = [C ; C(1,:)] ;
% save into png
plot(ver(:,1),ver(:,2),'r')
saveas(gcf,'triangle.png')
% save vertices into txt file
save vertices.txt ver -ascii
0 Commenti
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!