This is default featured post 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Catalin - Premiumbloggertemplates.com.

This is default featured post 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Catalin - Premiumbloggertemplates.com.

This is default featured post 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Catalin - Premiumbloggertemplates.com.

This is default featured post 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Catalin - Premiumbloggertemplates.com.

This is default featured post 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Catalin - Premiumbloggertemplates.com.

Se afișează postările cu eticheta pml1. Afișați toate postările
Se afișează postările cu eticheta pml1. Afișați toate postările

joi, 15 august 2019

Continuam cu Ioana si vedem cum foloseste ea cu lectiile Profului Online


https://marinepdms.blogspot.com/2019/04/geometrie-analitica-in-plan-teorie.html
http://marinepdms.blogspot.com/2014/10/expression-operators.html
https://www.laptopgarage.ro/incarcator-laptop-asus/384-incarcator-alimentator-laptop-asus-19v-90w.html
prof. Ioan URSU

https://mate-online-pentru-toti.blogspot.com/2019/02/lectia-1808-2003-clasa-11-siruri-de.html
Publicat pe 18 feb. 2015

ABONEAZĂ-TE 50 K

http://mate-online-pentru-toti.blogsp... - In aceasta lectie discutam despre geometria analitica, ce este si la ce ne ajuta? Dupa o discutie teoretica pe intelesul vostru ajungem sa rezolvam si niste probleme din tema pentru acasa. Descoperim impreuna ecuatia dreptei, ecuatia dreptei cand se cunoaste un punct si o directie si rezolvam o serie de exercitii. Daca lectia va este utila, as aprecia un Share sau Like http://proful-online.blogspot.com - VIDEO MATEMATICA cu Proful Online sau cautati pe Google: profu online Ioan Ursu Subscrieti: Ioan URSU (Google: proful online) http://www.youtube.com/user/profuldemate http://www.youtube.com/user/profulonline http://youtu.be/QBvVpNuJi3U - 1/2 Lectia 364 - Geometrie analitica pe intelesul vostru - Teorie si Probleme - Matematica Clasa 11 http://youtu.be/2ivENWSBu5w - 2/2 Lectia 364 - Geometrie analitica pe intelesul vostru - Teorie si Probleme - Matematica Clasa 11





You might also like:

sâmbătă, 18 octombrie 2014

Expression operators

Expression operators
+ - / *
LT GT EQ NE LE GE
NOT AND OR
SIN COS TAN SQR POW NEGATE ASIN ACOS ATAN LOG ALOG ABS INT NINT

!s = 30 * sin(45)
!t  =  pow(20,2) raise 20 to the power 2 (=400)
!f = (match(name of owner,’LPX’)gt 0)

4.3.5 Operator Precedence
()
 * /
 + -
 EQ NE GT LT GE LE
 NOT
 AND
 OR
(60 * 2 / 3 + 5) = 45
n array element may itself be an array:  (Multi - dimensional Arrays)

!x[1] = 'Hello'
!x[2] = 'World'
!y[1] = 'fred'
!y[2] = 'cup'
!z[1] = !x
!z[2] = !y

q var !z[1][2]
<string> ‘world’

q var !z[2][2]
<string> ‘cup’

The PML1 way is:          VAR !Z ( ‘$!X’ + ‘$!Y’ ) 
The PML2 way is           !Z = !X + !Y
NOTE: in this case !Z is a REAL variable and !X and  !Y must be real.

define function !!Area( !Length is REAL, !Width is REAL, !Result is REAL)
!Result = !Length * !Width
endfunction

!SurfaceArea = REAL()
!Partlength = 7
!PartWidth = 6
call !!Area(!PartLength, !PartWidth, !SurfaceArea)

define function !!Initialise()
 !TotalWeight = 0
 !!MaxWeight = 0
endfunction
call !!Initialise()

setup form !!view
  View .view1 plot width 41 hei 15
exit
exit

define method .view()
  !this.view1.borders = FALSE
  !this.view1.add('/c:\pmllib\ladder.plt')
endmethod

-----------------------------------------------------------------
Setup form !!stairfrm

   title 'Model stair'
   member .cyl is Dbref
   member .pos is Position
   !!stairfrm.callback  = '!!stairfrm.init()'
 
   view .diagram  PLOT height 10 width 36

   text .start ' Start Elevation Helical ' at xmin.diagram ymax+0.3 width 10 is real
   text .end   ' End Elevation Helical   ' at xmin.start ymax  width 10 is real
   text .name ' Name           ' at xmin.start ymax  width 10 is string
   text .height ' Height       ' at xmin.start ymax  width 10 is real
   text .width ' Width         ' at xmin.start ymax  width 10 is real

   Button .Ok 'ok'  at xmin.start ymax callback 'call !!stairfunc()' Ok
   Button .cancel |Cancel| at xmax form-size ymin.Ok CANCEL

Exit

Define Method .init()

  !this.height.val = 1200
  !this.width.val = 200


Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More