Curated Video
Cinemática
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,...
Curated Video
Multi-Paradigm Programming with Modern C++ - Distributing the Work
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...
Curated Video
Creational Design Patterns in Modern C++ - Multiple Actors - Part III
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...
Curated Video
Creational Design Patterns in Modern C++ - Multiple Actors - Part II
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...
Curated Video
C++ Standard Template Library in Practice - Auxiliary Iterator Functions
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...
Brian McLogan
Master writing the vector given the direction and magnitude
Master writing the vector given the direction and magnitude
Brian McLogan
Master Sketching a vector in component form and as a linear combination
Master Sketching a vector in component form and as a linear combination
Curated Video
Finding the Centroid of a Triangle Using Vector Geometry and Coordinate Points
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...
TMW Media
Scalers and Vectors: Solving a problem, Part 2
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
Flipping Physics
Nerd-A-Pult #2 - Another Projectile Motion Problem
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...
Curated Video
C++ Programming By Example - Building a Sorting Application
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...
Brian McLogan
What are i and j in terms of vectors
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...
Curated Video
Multi-Paradigm Programming with Modern C++ - Searching and Sorting
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...
Curated Video
Complete Modern C++ - std::array (C++11)
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...
Curated Video
C++ Standard Template Library in Practice - Numeric Algorithms - std::partial_sum and std::adjacent_difference
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 •...
Curated Video
C++ Standard Template Library in Practice - Iterator Adaptors
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...
Curated Video
C++ Programming By Example - Overview of STL Algorithms
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...
Curated Video
Data Science and Machine Learning with R - JSON Parsing: {jsonlite}
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.
Curated Video
Data Science and Machine Learning with R - Working with Loops
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.
Brian McLogan
Master Writing a vector given the initial and terminal point
Master Writing a vector given the initial and terminal point
The Noted Anatomist
Clinical testing extraocular muscles tutorial
This tutorial covers the "H" pattern used for clinical testing of the eye muscles.
Brian McLogan
Find the direction and magnitude of the resultant vector of two forces
Find the direction and magnitude of the resultant vector of two forces
Curated Video
Complete Modern C++ - Typedef, Type Alias, and Alias Templates (C++11)
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,...
Curated Video
C++ Standard Template Library in Practice - Defining an Allocator
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++...