Advertisement
Guest User

puntos5-6.sc3

a guest
Mar 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scilab 0.29 KB | None | 0 0
  1. // Solución de los puntos 5 y 6
  2. // del laboratorio.
  3. exec('data.sci', -1); // Tomar la data
  4. // Código de Nicole (con algunas modificaciones)
  5. xLog=log10(data(:,2)');
  6. yLog=log10(data(:,1)');
  7. rLog = correl(xLog, yLog);
  8. mprintf("\nEl coeficiete de correlacion transformado es %g", rLog);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement