I would like to extract x,y,z coordinates of any 3 atoms from a pdb file. How to rectify this error and make it generalized?

5 ビュー (過去 30 日間)
ubq=getpdb('1UBQ');
for n=[1,2,3]
Q(n)=[ubq.Model.Atom(n).X, ubq.Model.Atom(n).Y, ubq.Model.Atom(n).Z]
end
Unable to perform assignment because the indices on the left side are not compatible with the size of the right side.

採用された回答

Walter Roberson
Walter Roberson 2023 年 1 月 28 日
% N = range of indices for example
N=1:7;
Q = [ubq.Model.Atom(N).X; ubq.Model.Atom(N).Y; ubq.Model.Atom(n).Z].';
This assumes that each X Y Z are scalars.
This code process an array with 3 columns. If 3 rows are acceptable then leave out the .'

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeBioinformatics Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by