Search
- Filter Results
- Location
- Classification
- Include attachments
- 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 \(\PageIndex{i}\): Octave User Interface's Initial Working Directory Figure \(\PageIndex{i}\): How to Change Octave's Workin...By Carey A. Smith Watch this video. Then read the information below. Figure \(\PageIndex{i}\): Octave User Interface's Initial Working Directory Figure \(\PageIndex{i}\): How to Change Octave's Working Directory Figure \(\PageIndex{i}\): Opening m-Files in Octave Figure \(\PageIndex{i}\): Saving m-Files in Octave Figure \(\PageIndex{i}\): Set % as the comment symbol in Octave Figure \(\PageIndex{i}\): Setting the Font in Octave
- 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.05%3A_Plotting_PointsThis section explains how to do basic plots. Octave uses may need to add this line to their code: graphics_toolkit("qt") % Needed for Octave 7.2. (Do not use use the fltk toolkit.)
- https://eng.libretexts.org/Bookshelves/Introductory_Engineering/EGR_1010%3A_Introduction_to_Engineering_for_Engineers_and_Scientists/19%3A_Using_Computers_for_Engineering_and_Science/19.01%3A_Engineering_and_Science_LanguagesThis is a review of some of the basic analysis techniques. It is not intended to be complete for all engineering, it is just a start.
- https://eng.libretexts.org/Bookshelves/Introductory_Engineering/EGR_1010%3A_Introduction_to_Engineering_for_Engineers_and_Scientists/05%3A_What_is_a_computerThis chapter discusses the definition of computer. It also discusses the different types of computer scientists as a continuation of the previous chapter. This is a brief overview as is consistent wi...This chapter discusses the definition of computer. It also discusses the different types of computer scientists as a continuation of the previous chapter. This is a brief overview as is consistent with a general course in engineering, a true computer science course will delve into some of these subjects extensively.
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/01%3A_Modeling_Simulation_and_MATLABs_Interpreter/1.01%3A_Obtaining_MATLAB_and_OctaveMATLAB Overview. How to purchase MATLAB or Download Octave
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)etextbook Matlab/Octave Programming for STEM Applications. This text emphasizes practical applications of MATLAB in engineering, physics, mathematics and biology. Intended for California ENGR C-ID 220
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/01%3A_Modeling_Simulation_and_MATLABs_Interpreter/1.03%3A_A_Glorified_Calculator/1.3.01%3A_log()_round()_floor()_and_ceil()_functionsIntroduces rounding. Explains log vs. log10. Explains atan and atan2.
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/06%3A_Conditionals_Part_1/6.01%3A_Relational_Operators/6.1.02%3A_Octave_vs._MATLAB--not_equal_end_endif_endfunctionFor "not equal"Octave allows you to use either ~= or !=; Matlab only allows ~=. Octave allows you to use either "end" or "endif". But "endif" is not compatible with MATLAB. Use only "end" for compatib...For "not equal"Octave allows you to use either ~= or !=; Matlab only allows ~=. Octave allows you to use either "end" or "endif". But "endif" is not compatible with MATLAB. Use only "end" for compatibility.