Advertisement
Guest User

Untitled

a guest
Oct 21st, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.41 KB | None | 0 0
  1. clc
  2. clear
  3.  
  4. % Importa os dados
  5. filename = 'C:\Users\usuario\Desktop\Translations\Ciro_Jori\idw_fishnet2.csv';
  6. dados = readtable(filename);
  7.  
  8. npontos = 100;
  9. % X0 = 1:1:npontos;
  10. % X = repmat(X0, npontos, 1);
  11. % Y = transpose(X);
  12. % Z0 = repmat(-50, npontos, npontos);
  13. % Z1 = repmat(-100, npontos, npontos);
  14. C0 = reshape(dados.idw_vocs50, [npontos, npontos]);
  15. C1 = reshape(dados.idw_vocs10, [npontos, npontos]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement