Reputation: 275
How can I assign one single entry in a cell array (say the -20)
forces = {1,'Static',{'nodal' {2, 2, -30; 3, 2, -20 }} };
Upvotes: 0
Views: 54
Reputation:
Like this?
forces{3}{2}{2, 3} = -20;
Upvotes: 2