Search
- Filter Results
- Location
- Classification
- Include attachments
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/03%3A_for_Loops_Ploting_Points_Sequences_and_Series/3.06%3A_Sequences/3.6.01%3A_Sequences_Additional_MaterialHe popularized the Hindu–Arabic numeral system in the Western world.Hindu–Arabic numeral system(opens in new window) [en.Wikipedia.org] It is much better for arithmetic and algebra than Roman numerals...He popularized the Hindu–Arabic numeral system in the Western world.Hindu–Arabic numeral system(opens in new window) [en.Wikipedia.org] It is much better for arithmetic and algebra than Roman numerals. (2 pts) Then update a and b to be the current last 2 terms, in order to be ready for the next iteration. a = b; % Update a for the next iteration. (Use a semicolon so that this line does not display.) b = c; % Update a for the next iteration. (Use a semicolon so that this line does not display.)
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/03%3A_for_Loops_Ploting_Points_Sequences_and_Series/3.12%3A_Chapter_3_for_loop_Videos_in_English_and_EspanolChapter 3 videos English and Espanol
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/04%3A_Vectors/4.14%3A_ExercisesWrite a script that computes a vector with the first n elements of a Fibonacci sequence (assuming that the variable n is defined) and then computes a new vector that contains the ratios of consecu...Write a script that computes a vector with the first n elements of a Fibonacci sequence (assuming that the variable n is defined) and then computes a new vector that contains the ratios of consecutive Fibonacci numbers. Write a script named logmap.m that computes the first 50 elements of X with r = 3.9 and X1 = 0.5, where r is the parameter of the logistic map and X1 is the initial value.
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/06%3A_Conditionals_Part_1/6.05%3A_Logical_FunctionsLogical functions and operations. This is a modified version Of Allen Downey's section. It has been modified to use parentheses to remove ambiguity in the logic.
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/05%3A_User-Defined_Functions/5.06%3A_Functions_with_Multiple_OutputsHow to create and use MATLAB/Octave functions with multiple inputs
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/05%3A_User-Defined_Functions/5.05%3A_Functions_With_Multiple_Input_Variables/5.5.01%3A_Multiple_Inputs_Examples_and_ExercisesExamples of MATLAB/Octave functions with multiple inputs
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/05%3A_User-Defined_Functions/5.13%3A_Chapter_5_Function_videos_English_and_EspanolEnglish Function M-Files in MATLAB-RTalbert video Matlab Function video--MathWorks https://www.mathworks.com/videos/fun...ons-97413.html Espanol OCTAVE - Funciones y Script Files Funciones - 17 - Octa...English Function M-Files in MATLAB-RTalbert video Matlab Function video--MathWorks https://www.mathworks.com/videos/fun...ons-97413.html Espanol OCTAVE - Funciones y Script Files Funciones - 17 - Octave
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/06%3A_Conditionals_Part_1/6.11%3A_Chapter_6_if-logic_videos_English_and_EspanolChapter 6 videos English and Espanol
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/00%3A_Front_Matter/04%3A_LicensingThis OER textbook is covered by a creative commons license. Most sections are either CC BY-NC or CC BY-NC-SA. A detailed breakdown of this resource's licensing can be found in Back Matter/Detailed Lic...This OER textbook is covered by a creative commons license. Most sections are either CC BY-NC or CC BY-NC-SA. A detailed breakdown of this resource's licensing can be found in Back Matter/Detailed Licensing.
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/01%3A_Modeling_Simulation_and_MATLABs_Interpreter/1.05%3A_Octave_User_InterfaceBy Carey A. Smith Watch this video. Then read the information below. Figure \PageIndexi: Octave User Interface's Initial Working Directory Figure \PageIndexi: How to Change Octave's Workin...By Carey A. Smith Watch this video. Then read the information below. Figure \PageIndexi: Octave User Interface's Initial Working Directory Figure \PageIndexi: How to Change Octave's Working Directory Figure \PageIndexi: Opening m-Files in Octave Figure \PageIndexi: Saving m-Files in Octave Figure \PageIndexi: Set % as the comment symbol in Octave Figure \PageIndexi: Setting the Font in Octave
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/17%3A_Top-Down_Design_Agile_Software_Development_and_Object-Oriented_Programming_in_MATLAB/17.03%3A_Object-Oriented_Programming_Part_1In object-oriented programming, the programmer creates "objects" which contain data and functions specific to that class of data.