フィルターのクリア

Edit a number like mass in Nastran .bdf file

3 ビュー (過去 30 日間)
farzad
farzad 2017 年 12 月 7 日
編集済み: Stephen23 2018 年 2 月 4 日
Hi all
I want to modify mass parameter in a bdf file using matlab. checking this code but I couldn't edit it in a way to change the 4th column in front of CNOM
fname = 'bpillar.bdf' ;
fid = fopen(fname,'r') ;
S = textscan(fid,'%s','Delimiter','\n');
fclose(fid) ;
S = S{1} ;
%%Get the line number of CBEAM
idxS = strfind(S, 'CBEAM');
idx = find(not(cellfun('isempty', idxS)));
cbeam = S(idx(2:end)) ;
k = cellfun(@strsplit,cbeam,'un',0) ;
iwant = cell2mat(cellfun(@str2double,k,'un',0)) ;
  1 件のコメント
Stephen23
Stephen23 2018 年 2 月 4 日
編集済み: Stephen23 2018 年 2 月 4 日
@farzad: please upload a sample file by clicking the paperclip button.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB Report Generator についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by