Coder Social home page Coder Social logo

labviewmicroscript's Introduction

LabVIEWmicroscript

is a toy programming language written purly in LabVIEW, mostly just to see how little code could be used. It has wonderful features such as:

  • RPN
  • Simple
  • Supports functions

Code Example Returns the Square root.

1       "Xp"   SET   #Set an X_0/previous x
2       "Xn"   SET   #Set X next
0       "Cnt"  SET   #InitializeCounter
0.00001 "Acc"  SET   #Sets Accuracy
50      "Val"  SET   #Value to find Sqrt of

#Increments Counter
'Cnt 1 + "Cnt" SET' 
"Update_Cnt_Fn" SET 

# Absolute Value Function Expects Number
'"t1" SET
"t1" "t1 0 1 - *" t1 0 < IF EXEC'
"ABS" SET

#Iterates Newtons Method
'Xp Xp * Val + 2 Xp * / "Xn" SET'
'Nm_Iterate_Fn' SET

#Main Loop Returns Sqrt of Value
'Xn "Xp" SET
Update_Cnt_Fn EXEC
Nm_Iterate_Fn EXEC
"Main EXEC" "Xp"
Xp Xn - ABS EXEC Acc < Cnt 50 > | IF EXEC
' "Main" SET

Main EXEC

Example expression adds 12 and 4.

12 4 +

Variant attributes can be injected into the heap to use external variables.

labviewmicroscript's People

Contributors

taylorh140 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.