Programming Electronics Academy
Function Example Three: Arduino Course 8.3
A walk through of a User Defined Function in programming.
Programming Electronics Academy
Using Arrays with For Loops
I would say that arrays are one of the most useful programming tools available. Every programming language that I'm familiar with, at least, has some form of an array. If you're trying to learn a new programming language, one of the...
Curated Video
Describe an advanced data structure : From Painfully Slow to Optimal: The Maximum Sum Subarray
From the section: Doing a Lot with Very Little. In this section, we will explore some problems that look difficult to solve efficiently at first sight. You might think that they require some advanced logic or data structures, but in fact...
Programming Electronics Academy
Tutorial 09: How to read voltages with analogRead(): Arduino Course for Absolute Beginners (ReM)
In the last lesson you learned about using the analogRead() function to collect data from a sensor connected to one of the Arduino' analog pins. The range of data we received from the analogRead() function, was mapped from 0 to 1023....
Curated Video
C++ for Beginners - Arrays
In this section, David discusses arrays. This clip is from the chapter "Arrays" of the series "C++ for Beginners".Arrays
Curated Video
Learning Lodash 4.0 (Video 28)
Lodash was built to simplify JavaScript application development. It contains hundreds of methods built for the purpose of providing developers with a fast, reliable, cross-browser toolkit to write applications. With Lodash, you can...
Programming Electronics Academy
Tutorial 11: If Statement Conditionals: Arduino Course for Absolute Beginners (ReM)
In the last lesson we learned about the "If statement". The "If statement" was the perfect choice for setting up instructions to run only when certain conditions are met. "If 30 seconds has passed - stop the heating element" or "If the...
Programming Electronics Academy
Array Basics Part Two: Arduino Course 7.3
An introduction to using arrays in programming.
Programming Electronics Academy
Functions Example One: Arduino Course 8.1
A walk through of a User Defined Function in programming.
Programming Electronics Academy
Tutorial 05: Understanding Variables: Arduino Course for Absolute Beginners (ReM)
Lets have a discussion about a powerful and semi-confusing programming topic - variables. A variable is like a bucket. You choose what types of stuff you want in the bucket and can change the contents as often as you like. When you...
Curated Video
Julia for Data Science (Video 3)
Julia is an easy, fast, open source language that if written well performs nearly as well as low-level languages such as C and FORTRAN. Its design is a dance between specialization and abstraction, providing high machine performance...
Curated Video
Julia for Data Science (Video 13)
Julia is an easy, fast, open source language that if written well performs nearly as well as low-level languages such as C and FORTRAN. Its design is a dance between specialization and abstraction, providing high machine performance...
APMonitor
Solve Differential Equations in Python
Differential equations are solved in Python with the Scipy.integrate package using function ODEINT. ODEINT requires three inputs: y = odeint(model, y0, t) model: Function name that returns derivative values at requested y and t values as...
Curated Video
Solving Single Digit by Multidigit Multiplication Using the Distributive Property
In this lesson, students will learn how to solve single digit by multidigit multiplication problems using the distributive property. The distributive property is a useful trick that makes arithmetic and algebraic math problems easier to...
APMonitor
Matlab 👩💻 Array and Matrix
Arrays are a way of storing a sequence of numbers or letters by using brackets [ ] or by declaring a 'string'. You could use an array for an incubator to keep information on such as a history of the temperatures. # array of numbers...
Programming Electronics Academy
Arrays and For Loops Continued: Arduino Course 7.5
A walkthrough of using arrays and for loops in programming.
Curated Video
C++ for Beginners - Multi-Dimensional Arrays
In this video, David examines multi-dimensional arrays and nested loops. This clip is from the chapter "Arrays" of the series "C++ for Beginners".Arrays
Curated Video
C++ Developer - The Array Class
This video explains the array class. This clip is from the chapter "Arrays and Vectors" of the series "The Complete C++ Developer Course".This section explains arrays and vectors.
Curated Video
Prime or Composite: Using Area Models to Determine Number Types
In this video, the teacher explains how to determine if a number is prime or composite using area models. They demonstrate that prime numbers have only one set of factors, while composite numbers have multiple sets of factors.
Programming Electronics Academy
Tutorial 07: digitalRead() and the Serial Port: Arduino Course for Absolute Beginners (ReM)
*Description:* As simple as it may seem, knowing when something is either on or off can be a great tool to designing something useful. Answers to the following questions are what this lesson plans to tackle: Is a button being pressed?...
Curated Video
Excel VBA Programming The Complete Guide - The Macro Recorder
The Macro Recorder is a powerful tool that converts your interface actions (i.e. clicks, navigations, aesthetic changes) into valid VBA code. In this lesson, we discuss the merits (and drawbacks) of the Macro Recorder and explore some of...
Programming Electronics Academy
Class to Library: Arduino Course 8.7
A walk through of turing a class into an Arduino code library.
Programming Electronics Academy
Arrays and For Loops: Arduino Course 7.4
A walkthrough of using arrays and for loops in programming.