Create a data structure to store information about the elements in the periodic table of elements. For every element, store the name, atomic number, chemical symbol, class, atomic weight, and a sevenelement vector for the number of electrons in each shell
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:8| Question number:17.8
All Answers
total answers (1)
>> element = struct('name','Lithium','atomicNumber',3,...
'chemicalSymbol','Li','class','alkali_metal',...
'atomicWeight',6.94, 'electrons',[2 1 0 0 0 0 0])
element =
name: 'Lithium'
atomicNumber: 3
chemicalSymbol: 'Li'
class: 'alkali_metal'
atomicWeight: 6.9400
electrons: [2 1 0 0 0 0 0]
need an explanation for this answer? contact us directly to get an explanation for this answer