Guest User

Matlab Driver for MEEP analysis

a guest
Feb 25th, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.35 KB | None | 0 0
  1. close all;
  2. clear all;
  3. clc;
  4. df = input('What is the frequency spacing(df)? \n');
  5. reso = input('What is the resolution? \n');
  6. f_min = input('What is the minimum frequency? \n');
  7. f_max = input('What is the maximum frequency? \n');
  8. [x, ez] = plotH5(df, reso, f_min, f_max);
  9. [f_arr, beta_arr, f, k] = compareFULL(df, reso, f_min, f_max);
  10. close all;
Advertisement
Add Comment
Please, Sign In to add comment