Wolfram 语言

知识库扩展

解剖结构的可视化和分析

绘制人体足部骨骼结构和皮肤,并估计其表面积(以平方毫米计).

In[1]:=
Click for copyable input
Row[EntityValue[{Entity["AnatomicalStructure", "RightFoot"], Entity["AnatomicalStructure", "SkinOfRightFoot"]}, "MeshRegion"]]
Out[1]=
In[2]:=
Click for copyable input
Area[EntityValue[Entity["AnatomicalStructure", "SkinOfRightFoot"], "MeshRegion"]]
Out[2]=

绘制肱动脉背侧支的连通性.

In[3]:=
Click for copyable input
NestGraph[Cases[EntityValue[#, "Branches"], _Entity] &, Entity["AnatomicalStructure", "BrachialArtery"], 3, VertexLabels -> Placed["Name", Tooltip], EdgeStyle -> Pink, VertexStyle -> Pink, GraphStyle -> "BasicBlack"]
Out[3]=

查找左前臂的部位.

In[4]:=
Click for copyable input
g = NestGraph[Cases[EntityValue[#, "ConstitutionalParts"], _Entity] &, Entity["AnatomicalStructure", "LeftForearm"], 2]
Out[4]=

计算咽喉、食道、胃、小肠和大肠的总长度.

In[5]:=
Click for copyable input
UnitConvert[ EntityValue[ EntityGroup[{Entity["AnatomicalStructure", "Pharynx"], Entity["AnatomicalStructure", "Esophagus"], Entity["AnatomicalStructure", "Stomach"], Entity["AnatomicalStructure", "SmallIntestine"], Entity["AnatomicalStructure", "LargeIntestine"]}], "Length"], "Metric"]
Out[5]=

比较男性和女性足部的长度和宽度.

In[6]:=
Click for copyable input
# -> (UnitConvert[#, "Centimeters"] & /@ EntityValue[ EntityInstance[Entity["AnatomicalStructure", "Foot"], "Gender" -> #], {"Length", "Width"}, "PropertyAssociation"]) & /@ {"Female", "Male"}
Out[6]=

相关范例

de en es fr ja ko pt-br ru