node creation using class
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Shahrukh s
am 4 Aug. 2020
Kommentiert: JAMMI ASHOK
am 24 Sep. 2020
how to creat a 3-by-3 node stcuture(having coordinate of each node) in class?
0 Kommentare
Akzeptierte Antwort
HighPhi
am 4 Aug. 2020
I'd say,
classdef yourNodes
properties
S; % start nodes
T; % end nodes
pts; % points
end
methods
function obj = addNode(obj, X, Y, Z)
obj.pts = [obj.pts; X, Y, Z];
end
function obj = connectNodes(obj, ind1, ind2)
obj.S = [obj.S, ind1];
obj.T = [obj.T, ind2];
end
end
end
Then you could simply...
myNodes = yourNodes;
myNodes = addNode(myNodes, 1, 1, 1); % add node 1
myNodes = addNode(myNodes, 2, 2, 2); % add node 2
myNodes = connectNodes(myNodes, 1, 2); % Connect node1 to node2
1 Kommentar
JAMMI ASHOK
am 24 Sep. 2020
Hey Highphi.
It's nice the way you have done it ! Where have you learnt OOP 's in MATLAB. I've been searching a lot.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!