Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
GNU Octave Beginner's Guide

You're reading from  GNU Octave Beginner's Guide

Product type Book
Published in Jun 2011
Publisher Packt
ISBN-13 9781849513326
Pages 280 pages
Edition 1st Edition
Languages
Author (1):
Jesper Schmidt Hansen Jesper Schmidt Hansen
Profile icon Jesper Schmidt Hansen

Table of Contents (15) Chapters

GNU Octave
Credits
About the Author
About the Reviewers
1. www.PacktPub.com
2. Preface
1. Introducing GNU Octave 2. Interacting with Octave: Variables and Operators 3. Working with Octave: Functions and Plotting 4. Rationalizing: Octave Scripts 5. Extensions: Write Your Own Octave Functions 6. Making Your Own Package: A Poisson Equation Solver 7. More Examples: Data Analysis 8. Need for Speed: Optimization and Dynamically Linked Functions Pop quiz - Answers

Time for action - analysing the exchange rate


  1. 1. Assume that we have loaded the currency exchange rate data into a variable curr and that we have 230 data points. The month index is given by:

octave:39> m_index = [0:229];
  1. 2. The increasing trend is given by the end-points in the data:

octave:40> a = (curr(230)-curr(1))/229; b = curr(1);
  1. 3. Subtracting the trend from the data:

octave:41> curr1 = curr a*m_index b;
  1. 4. To ensure a data set with zero-mean, we use:

octave:42> curr2 = curr1-mean(curr1);
  1. 5. We can then perform a Fourier analysis on the "trend-free" data using the ordinary frequency f = ω / 2π:

octave:43> N=230; n=[-N/2:N/2]; n(N+1) = []; freq = n./N;
octave:44> acurr = abs( fftshift( fft(curr2) ) );
  1. 6. To plot the result, we use:

octave:45> plot(freq, acurr)
  • The result is shown below for positive frequencies. Note that we may have an aliasing problem!

  1. 7. Now the ordinary frequency of the main mode is:

octave:46> i = find( acurr==max(accur) ); freq(i)
ans = 0.030434...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}