Ortix

Untitled

Sep 28th, 2012
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.49 KB | None | 0 0
  1. %% GPS Knopje
  2. function load_gps_Callback(hObject, eventdata, handles)
  3. [handles.name, handles.path] = uigetfile('.txt')
  4. fullpath = [handles.path, handles.name];
  5.  
  6. handles.fullpath_gps = fullpath;
  7.  
  8. set(handles.edit_gps, 'string', fullpath);
  9.  
  10. %% Windkracht Knopje
  11. function load_wind_Callback(hObject, eventdata, handles)
  12. [handles.name, handles.path] = uigetfile('.txt')
  13. fullpath = [handles.path, handles.name];
  14.  
  15. handles.fullpath_wind = fullpath;
  16. set(handles.edit_wind, 'string', fullpath);
Advertisement
Add Comment
Please, Sign In to add comment