node creation using for loop

6 次查看(过去 30 天)
Shahrukh s
Shahrukh s 2020-9-10
评论: KSSV 2020-9-10
how can we create nodeset having data like node_number, x,y,z coordinates say for 20 nodes using for loop
  6 个评论
Shahrukh s
Shahrukh s 2020-9-10
i just want a for loop programme to execute this type data structure
KSSV
KSSV 2020-9-10
x = 100:120 ;
y =10:20 ;
[X,Y] = meshgrid(x,y) ;
mesh(X,Y)

请先登录,再进行评论。

回答(2 个)

KSSV
KSSV 2020-9-10

Ameer Hamza
Ameer Hamza 2020-9-10
Try using graph() object provided by MATLAB: https://www.mathworks.com/help/releases/R2020a/matlab/ref/graph.html. For example,
node_ID = string(1:20);
x = rand(20,1);
y = rand(20,1);
z = rand(20,1);
G = graph(zeros(20), node_ID);
G.Nodes.x = x;
G.Nodes.y = y;
G.Nodes.z = z;
plot(G)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by