• Remix
  • Share
  • New Entry

on 18 Oct 2021
  • 1
  • 28
  • 0
  • 0
  • 200
ax=axes
ax =
Axes with properties: XLim: [0 1] YLim: [0 1] XScale: 'linear' YScale: 'linear' GridLineStyle: '-' Position: [0.1300 0.1100 0.7750 0.8150] Units: 'normalized' Show all properties
s=surface(160*membrane(1,100))
s =
Surface with properties: EdgeColor: [0 0 0] LineStyle: '-' FaceColor: 'flat' FaceLighting: 'flat' FaceAlpha: 1 XData: [1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 … ] YData: [201×1 double] ZData: [201×201 double] CData: [201×201 double] Show all properties
s.EdgeColor='none'
s =
Surface with properties: EdgeColor: 'none' LineStyle: '-' FaceColor: 'flat' FaceLighting: 'flat' FaceAlpha: 1 XData: [1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 … ] YData: [201×1 double] ZData: [201×201 double] CData: [201×201 double] Show all properties
ax.CameraPosition=[-145.5 -229.7 283.6]
ax =
Axes with properties: XLim: [0 250] YLim: [0 201] XScale: 'linear' YScale: 'linear' GridLineStyle: '-' Position: [0.1300 0.1100 0.7750 0.8150] Units: 'normalized' Show all properties
ax.CameraViewAngle=36.7
ax =
Axes with properties: XLim: [0 201] YLim: [0 201] XScale: 'linear' YScale: 'linear' GridLineStyle: '-' Position: [0.1300 0.1100 0.7750 0.8150] Units: 'normalized' Show all properties
l2=light
l2 =
Light with properties: Color: [1 1 1] Style: 'infinite' Position: [1 0 1] Visible: on Show all properties
l2.Position=[.5 -1 .4]
l2 =
Light with properties: Color: [1 1 1] Style: 'infinite' Position: [0.5000 -1 0.4000] Visible: on Show all properties
l2.Color=[0.8 0.8 0]
l2 =
Light with properties: Color: [0.8000 0.8000 0] Style: 'infinite' Position: [0.5000 -1 0.4000] Visible: on Show all properties
s.FaceColor=[0.9 0.2 0.2]
s =
Surface with properties: EdgeColor: 'none' LineStyle: '-' FaceColor: [0.9000 0.2000 0.2000] FaceLighting: 'flat' FaceAlpha: 1 XData: [1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 … ] YData: [201×1 double] ZData: [201×201 double] CData: [201×201 double] Show all properties
axis off
Remix Tree