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 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 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 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.
Instructional Video7:57
Curated Video

Data Science and Machine Learning with R - Working with Loops

Higher Ed
This video explains working with loops. This clip is from the chapter "Intermediate R" of the series "Data Science and Machine Learning with R from A-Z Course [Updated for 2021]".This section explains intermediate R.
Instructional Video10:02
Brian McLogan

Master Writing a vector given the initial and terminal point

12th - Higher Ed
Master Writing a vector given the initial and terminal point
Instructional Video4:05
The Noted Anatomist

Clinical testing extraocular muscles tutorial

Higher Ed
This tutorial covers the "H" pattern used for clinical testing of the eye muscles.
Instructional Video9:54
Brian McLogan

Find the direction and magnitude of the resultant vector of two forces

12th - Higher Ed
Find the direction and magnitude of the resultant vector of two forces
Instructional Video8:01
Curated Video

Complete Modern C++ - Typedef, Type Alias, and Alias Templates (C++11)

Higher Ed
In this video, understand the concept of type definitions and type aliases and then compare them. This clip is from the chapter "Templates" of the series "Complete Modern C++".In this section, we will see non-type template arguments,...
Instructional Video9:16
Curated Video

C++ Standard Template Library in Practice - Defining an Allocator

Higher Ed
The user would like to know how to implement their own allocator. • Talk about what is expected of an allocator • Define a minimal allocator • Reinforce the lesson with an example This clip is from the chapter "Memory" of the series "C++...