Instructional Video9:15
Curated Video

C++ Standard Template Library in Practice - Stacks and Queues

Higher Ed
The user is unfamiliar with the deque container, the adapter containers that wrap it, wishes to know more about them, and when to use them. • Begin by introducing the user to the deque container, discussing how it works • Then break down...
Instructional Video11:27
Curated Video

C++ Programming By Example - Adding Search Functionality

Higher Ed
How can you add search functionality to the application? • Learn what algorithms could be used from the STL • Implement search by book title • Experiment with search by author This clip is from the chapter "Building a Library Management...
Instructional Video12:07
Brian McLogan

Find the actual speed and bearing using vectors

12th - Higher Ed
Find the actual speed and bearing using vectors
Instructional Video9:41
Flipping Physics

Introduction to Newton's 2nd Law with Example Problem

12th - Higher Ed
The application of Newton’s Second Law is when you really understand what the net force equals mass times acceleration where both force and acceleration are vectors really means. Therefore, we introduce Newton’s Second Law and then do an...
Instructional Video13:56
Virtually Passed

Work Energy Proof Part 1 - Kinetic Energy

Higher Ed
This video will prove that the total work done on a particle between positions 1 and 2 equals the change in kinetic energy.
Instructional Video6:16
IDG TECHtalk

R tip: Access nested list items with purrr

Higher Ed
In this ninth episode of Do More with R, learn how to easily access and modify nested list items with the purrr package’s modify_depth function. Leave a comment and let us know what tips you’d like to see in a future Do More With R video.
Instructional Video4:21
Curated Video

Cinemática

3rd - 12th
Este programa de video de acción en vivo es sobre la palabra Cinemática. El programa está diseñado para reforzar y apoyar la comprensión y retención por el estudiante de la palabra Cinemática mediante el uso de secuencias de video,...
Instructional Video9:24
Curated Video

Multi-Paradigm Programming with Modern C++ - Distributing the Work

Higher Ed
Task creation is cheap, but it’s not free. We have to find a compromise between loading all threads with data and introducing unnecessary overhead. In this video we will learn a simple formula for distributing the work, and also discover...
Instructional Video9:12
Curated Video

Creational Design Patterns in Modern C++ - Multiple Actors - Part III

Higher Ed
This video is the third part of the three-part video that demonstrates how to reduce dependency on the concrete classes through a factory. This clip is from the chapter "Object Pool" of the series "Creational Design Patterns in Modern...
Instructional Video7:38
Curated Video

Creational Design Patterns in Modern C++ - Multiple Actors - Part II

Higher Ed
This video is the second part of the three-part video that demonstrates how to use the acquire and release methods. This clip is from the chapter "Object Pool" of the series "Creational Design Patterns in Modern C++".This section...
Instructional Video5:05
Curated Video

C++ Standard Template Library in Practice - Auxiliary Iterator Functions

Higher Ed
We want to know what functions are available for making working with iterators simpler. • Learn what functions are available to make working with iterators more generic • Learn what these different functions can do • Show them in action...
Instructional Video11:40
Brian McLogan

Master writing the vector given the direction and magnitude

12th - Higher Ed
Master writing the vector given the direction and magnitude
Instructional Video5:57
Brian McLogan

Master Sketching a vector in component form and as a linear combination

12th - Higher Ed
Master Sketching a vector in component form and as a linear combination
Instructional Video7:12
Curated Video

Finding the Centroid of a Triangle Using Vector Geometry and Coordinate Points

Higher Ed
The video is a lecture presentation on vector geometry and the ratio theorem, with a focus on the centroid of a triangle. The presenter explains the concept of a centroid, which is the point of concurrency of a triangle formed by the...
Instructional Video10:29
Flipping Physics

Nerd-A-Pult #2 - Another Projectile Motion Problem

12th - Higher Ed
This time in our projectile motion problem, we know the displacement in the y-direciton and we are solving for the displacement in the x-direciton. We could you use the quadratic formula and I even show you how, however, I also show you...
Instructional Video6:54
TMW Media

Scalers and Vectors: Solving a problem, Part 2

K - 5th
Based on previous results, how would solve the next part of the problem and express it in terms of magnitude and angle? Scalers and Vectors, Part 5
Instructional Video20:21
Curated Video

C++ Programming By Example - Building a Sorting Application

Higher Ed
How to build a mini address book that is sortable by first name, last name, and phone number? • Introduce std::pair and std::tuple • Create fake data for “phone book” • Show how to use the std::sort function to sort by first name, last...
Instructional Video4:34
Brian McLogan

What are i and j in terms of vectors

12th - Higher Ed
in this video series I will show you how to find the angle of a vector when given in component form or as a linear combination. To understand the direction of a vector it is important to go back to the unit circle and determine how we...
Instructional Video4:29
Curated Video

Multi-Paradigm Programming with Modern C++ - Searching and Sorting

Higher Ed
Search is the most common operation we perform on data. There are three common types of search: Linear, sorted (binary), and by hash. • Linear search is the simplest way to find things, and often the fastest • Overview of associative...
Instructional Video4:03
Curated Video

Complete Modern C++ - std::array (C++11)

Higher Ed
In this video, learn the features of std::array and compare it with in-built static arrays. This clip is from the chapter "Standard Template Library" of the series "Complete Modern C++".This section is the description of the standard...
Instructional Video7:54
Curated Video

C++ Standard Template Library in Practice - Numeric Algorithms - std::partial_sum and std::adjacent_difference

Higher Ed
The listener is new to algorithms and does not know about the numeric algorithms. • Introduce the listener to the std::partial_sum and std::adjacent_difference algorithm • Show how it works and explain the different versions available •...
Instructional Video8:35
Curated Video

C++ Standard Template Library in Practice - Iterator Adaptors

Higher Ed
We want to learn what other non-container iterators are available, and what they can do. • Introduce the different adapter iterator types • Learn what they can do and cover the differences • Show them in action using a code example This...
Instructional Video20:03
Curated Video

C++ Programming By Example - Overview of STL Algorithms

Higher Ed
What algorithms are available in the standard template library? • Introduce algorithms available in the standard template library via the documentation • Implement examples of use of the various algorithms • Show the output from program...
Instructional Video10:46
Curated Video

Data Science and Machine Learning with R - JSON Parsing: {jsonlite}

Higher Ed
This video explains JSON parsing. This clip is from the chapter "Data Manipulation in R" of the series "Data Science and Machine Learning with R from A-Z Course [Updated for 2021]".This section focuses on data manipulation in R.