Extract nodes and elements from abaqus input file to matlab
Show older comments
Hello,
I have an abaqus input file with the following structure:
Now I want to extract the nodes and elements to matlab in order to do computations there. I have two problems:
- The nodes of each elements are written in 2 lines. How can I change this to one line without joining each line individually?
- Whats in general the easiest and fastest way to read this out?
Thanks
Accepted Answer
More Answers (2)
doc textscan
Praveen Venkatesh Sethumadhavan Vasan
on 2 Jul 2019
0 votes
Dear KSSV,
ele = cell2mat(cellfun(@str2num,elements,'UniformOutput',false)); is this correct without loop?
I didnt understand why you used loop at the end.
Categories
Find more on Time Series Collections in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!