Instructional Video1:38
Brian McLogan

How to find the inverse of a squared function

12th - Higher Ed
πŸ‘‰ Learn how to find the inverse of a quadratic function. A quadratic function is a function whose highest exponent in the variable(s) of the function is 2. The inverse of a function is a function that reverses the "effect" of the...
Instructional Video4:27
Brian McLogan

Graphing logarithmic equations

12th - Higher Ed
πŸ‘‰ Learn all about graphing logarithmic functions. A logarithmic function is a function with logarithms in them. The graph of the parent function of a logarithmic function usually takes its domain from the positive x-axis. To graph a...
Instructional Video1:07
Brian McLogan

Graphing a logarithmic function and identify the domain and range

12th - Higher Ed
πŸ‘‰ Learn all about graphing logarithmic functions. A logarithmic function is a function with logarithms in them. The graph of the parent function of a logarithmic function usually takes its domain from the positive x-axis. To graph a...
Instructional Video3:27
Brian McLogan

Graphing a logarithm with horizontal and vertical shift

12th - Higher Ed
πŸ‘‰ Learn all about graphing logarithmic functions. A logarithmic function is a function with logarithms in them. The graph of the parent function of a logarithmic function usually takes its domain from the positive x-axis. To graph a...
Instructional Video3:49
Brian McLogan

Find the inverse of the square root function by adding a constraint

12th - Higher Ed
πŸ‘‰ Learn how to find the inverse of a function. The inverse of a function is a function that reverses the "effect" of the original function. One important property of the inverse of a function is that when the inverse of a function is...
Instructional Video5:00
Curated Video

Excel VBA Programming The Complete Guide - The Range.CurrentRegion Property

Higher Ed
The Range.CurrentRegion property looks for the boundaries surrounding the range passed in as the argument. It returns a new Range representing the complete region surrounding the cell. In this lesson, we practice using the CurrentRegion...
Instructional Video6:53
Curated Video

Excel VBA Programming The Complete Guide - Iterating over a Range of Cells with For Each

Higher Ed
The For Each construct can also be used to iterate over a range of cells. Each object iterated over will be a single cell, itself a Range object. In this lesson, we iterate over and modify the values in a single column. This clip is from...
Instructional Video8:13
Curated Video

Excel VBA Programming The Complete Guide - Absolute vs. Relative References I

Higher Ed
The Macro Recorder can record with absolute or relative references. Absolute references (the default recording option) target specific cells (i.e. B1) -- the recorder is more concerned with the destination. Relative references record...
Instructional Video8:04
Curated Video

The Complete Excel Guide: Beginners to Advanced - Functions - Part 2

Higher Ed
Let's continue with the functions. This clip is from the chapter "Excel 2019 Advanced: Functions" of the series "The Complete Excel Guide: Beginners to Advanced".In this section, we'll explore what are functions.
Instructional Video7:40
Curated Video

The Complete Excel Guide: Beginners to Advanced - VLOOKUPS

Higher Ed
The aim of this video is to explore how VLOOKUPS works. This clip is from the chapter "Excel 2019 Beginners: Advanced Formula Creation" of the series "The Complete Excel Guide: Beginners to Advanced".In this section, we'll explore and...
Instructional Video5:28
Curated Video

The Complete Excel Guide: Beginners to Advanced - Dimensional Formulas

Higher Ed
Let's explore dimensional formulas. This clip is from the chapter "Excel 2019 Beginners: Working with Sheets" of the series "The Complete Excel Guide: Beginners to Advanced".In this section, we'll start working with sheets.
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 Video3:14
Curated Video

C++ Standard Template Library in Practice - Max

Higher Ed
The listener is new to algorithms and does not know about the max algorithms. β€’ Introduce the listener to the std::max, and std::max_element algorithm β€’ Show how it works and explain the different versions available β€’ Reinforce the...
Instructional Video6:18
Let's Tute

Microsoft Excel Tutorial: Extracting Values

9th - Higher Ed
In this Microsoft Excel tutorial, we learn how to extract values using the SMALL and LARGE functions, as well as how to rank values using the RANK function and calculate percentile ranks using the PERCENTRANK function. The tutorial...
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 Video9:37
Curated Video

The Full Stack Web Development - Working With Lists & Hashes

Higher Ed
Redis - The Cache Database: Working With Lists & Hashes This clip is from the chapter "Redis - The Cache Database" of the series "The Full Stack Web Development".In this section, we look into Redis – part of other essential technology...
Instructional Video2:25
Brian McLogan

Exam Review Understanding the cosecant graph to determine the range

12th - Higher Ed
πŸ‘‰ Learn the basics of graphing the secant and the cosecant graphs. Recall that the secant is the reciprocal of the cosine while the cosecant is the reciprocal of the sine. Also recall that the cosine graph is a sinusoidal graph with...
Instructional Video6:12
Brian McLogan

How to graph, find range, domain, vertex, and axis of symmetry from a quadratic

12th - Higher Ed
πŸ‘‰ Learn how to graph quadratic equations in vertex form. A quadratic equation is an equation of the form y = ax^2 + bx + c, where a, b and c are constants. The graph of a quadratic equation is in the shape of a parabola which can either...
Instructional Video1:45
Brian McLogan

How to find the domain and range from an absolute value graph

12th - Higher Ed
Learn how to identify the domain and range of functions from equations. To do this we will need to sketch the graph of the equation and then determine how low and how high the graph travels for the range and how far left and how far...
Instructional Video4:02
Brian McLogan

How to determine the domain and range from a function graph

12th - Higher Ed
Learn how to determine the domain and range of a function given the graph of the function. Since the domain of a function is the set of all x-values we will want to identify how far left the graph goes as well as how far right to...
Instructional Video4:48
Brian McLogan

Graph a reciprocal function and determine the limits of the vertical asymptotes

12th - Higher Ed
πŸ‘‰ Learn how to graph the reciprocal function. A reciprocal function is a rational function whose expression of the variable is in the denominator. A reciprocal function is of the form f(x) = a / (x + h) + k, where h is the vertical...
Instructional Video6:47
Curated Video

Excel VBA Programming The Complete Guide - The Formula and FormulaR1C1 Properties

Higher Ed
In this lesson, we introduce a basic sum example to show how R1C1 notation can be helpful when duplicating formulas across multiple columns. This clip is from the chapter "Range References" of the series "Excel VBA ProgrammingΓ’β‚¬β€œThe...
Instructional Video10:42
Curated Video

Excel VBA Programming The Complete Guide - The ElseIf and Else Statements

Higher Ed
Multiple pieces of conditional logic can be chained together with the If, ElseIf and Else keywords. In this lesson, we write a procedure that takes 3 possible paths of execution. This clip is from the chapter "Conditionals" of the series...
Instructional Video8:24
Brian McLogan

What Does the Inverse Graph of Sine Look Like

12th - Higher Ed
πŸ‘‰ Learn how to evaluate the inverse of reciprocal trigonometric functions. Recall that the reciprocal trigonometric functions are given by the ratio of 1 and the corresponding trigonometric function. When an angle is unknown but the...