Extract nodes and elements from abaqus input file to matlab
Ältere Kommentare anzeigen
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
Akzeptierte Antwort
Weitere Antworten (2)
doc textscan
Praveen Venkatesh Sethumadhavan Vasan
am 2 Jul. 2019
0 Stimmen
Dear KSSV,
ele = cell2mat(cellfun(@str2num,elements,'UniformOutput',false)); is this correct without loop?
I didnt understand why you used loop at the end.
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!