Extract nodes and elements from abaqus input file to matlab
古いコメントを表示
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
採用された回答
その他の回答 (2 件)
doc textscan
Praveen Venkatesh Sethumadhavan Vasan
2019 年 7 月 2 日
0 投票
Dear KSSV,
ele = cell2mat(cellfun(@str2num,elements,'UniformOutput',false)); is this correct without loop?
I didnt understand why you used loop at the end.
カテゴリ
ヘルプ センター および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!