Foundations of Computational Finance with MATLAB
eBook - ePub

Foundations of Computational Finance with MATLAB

  1. English
  2. ePUB (mobile friendly)
  3. Available on iOS & Android
eBook - ePub

Foundations of Computational Finance with MATLAB

Book details
Book preview
Table of contents
Citations

About This Book

Graduate from Excel to MATLAB ÂŽ to keep up with the evolution of finance data

Foundations of Computational Finance with MATLAB ÂŽ is an introductory text for both finance professionals looking to branch out from the spreadsheet, and for programmers who wish to learn more about finance. As financial data grows in volume and complexity, its very nature has changed to the extent that traditional financial calculators and spreadsheet programs are simply no longer enough. Today's analysts need more powerful data solutions with more customization and visualization capabilities, and MATLAB provides all of this and more in an easy-to-learn skillset.

This book walks you through the basics, and then shows you how to stretch your new skills to create customized solutions. Part I demonstrates MATLAB's capabilities as they apply to traditional finance concepts, and PART II shows you how to create interactive and reusable code, link with external data sources, communicate graphically, and more.

  • Master MATLAB's basic operations including matrices, arrays, and flexible data structures
  • Learn how to build your own customized solutions when the built-ins just won't do
  • Learn how to handle financial data and industry-specific variables including risk and uncertainty
  • Adopt more accurate modeling practices for portfolios, options, time series, and more

MATLAB is an integrated development environment that includes everything you need in one well-designed user interface. Available Toolboxes provide tested algorithms that save you hours of code, and the skills you learn using MATLAB make it easier to learn additional languages if you choose to do so. Financial firms are catching up to universities in MATLAB usage, so this is skill set that will follow you throughout your career. When you're ready to step into the new age of finance, Foundations of Computational Finance with MATLAB provides the expert instruction you need to get started quickly.

Frequently asked questions

Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes, you can access Foundations of Computational Finance with MATLAB by Ed McCarthy in PDF and/or ePUB format, as well as other popular books in Business & Corporate Finance. We have over one million books available in our catalogue for you to explore.

Information

Publisher
Wiley
Year
2018
ISBN
9781119433873
Edition
1

PART I
MATLAB Conventions and Basic Skills

CHAPTER 1
Working with MATLABÂŽ Data

1.1 Introduction

MATLAB® is an abbreviation of “matrix laboratory,” and while the ability to work with matrices is still an essential part of the program, the software also works with numerous other data types. This chapter examines several of the different data types you are likely to encounter and the functions needed to manipulate them.
This material and the subsequent chapters assume you know how to open MATLAB, enter commands in the Command Window, and create and identify variables and their types in the Workspace. If you lack those skills, consider working through the MATLAB Onramp training program, which is available free online in The MathWorksÂŽ MATLAB Academy (matlabacademy.mathworks.com) and takes just a few hours to complete.
Key concepts introduced in this chapter include:
  • MATLAB array types
  • Flexible data structures
Software required for this chapter: MATLAB base program.

1.2 Arrays

An array is a data series arranged in rows and columns. The usual notations to denote the number of rows and columns are r × c (rows by columns) or m × n (also signifying rows by columns). Table 1.1 shows the MATLAB terminology used to distinguish arrays.
Table 1.1 MATLAB Data Terminology
Term Size Example
Scalar 1 × 1 (1 row by 1 column) 7
Row vector 1 × n (1 row by n columns) [1 2 3]
Column vector m × 1 (m rows by 1 column)
images
Matrix m × n (m rows by n columns)
images
The term array in MATLAB is potentially confusing because the program allows for aggregating multiple data types in arrays, so it's often easiest to think of an array as a container for holding multiple values in one variable (except for scalars, which have one value). In some instances, those values are of the same type: numbers or characters (letters, for example), but other array types can hold different value types within one variable. Table 1.2 summarizes the more common array types; subsequent sections cover each type in more detail.
Table 1.2 MATLAB Array Types
Array Type Description Example
Cell Cells can contain any data type including strings, numbers, or combinations of the two. Row vector cell array:
{1, ‘a’, ‘text’, 1:10}

2 × 2 cell array matrix:
{1, ‘a’; ‘text’, 1:10}
Character Sequence of characters, typically short pieces of text ‘a b c’
Dates and times Used to represent ...

Table of contents

  1. Cover
  2. Introduction
  3. PART I: MATLAB Conventions and Basic Skills
  4. PART II: Financial Calculations with MATLAB
  5. APPENDIX 1: Sharing Your Work
  6. APPENDIX 2: Reference for Included MATLABÂŽ Functions
  7. Index
  8. End User License Agreement