Advertisement
Guest User

Untitled

a guest
Apr 29th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Octave 0.38 KB | None | 0 0
  1. % Palade Catalin-Iulian, 312CA
  2. function [R1 R2] = PageRank(nume, d, eps)
  3.     % Calculeaza indicii PageRank pentru cele 3 cerinte
  4.     R1 = Iterative(nume, d, eps);
  5.     R2 = Algebraic(nume, d);
  6.     % Scrie fisierul de iesire nume.out
  7.     fido =  fopen(strcat(nume, '.out'),'w');
  8.     N = fgetl(fid);
  9.     fprintf(fido, %d, A);
  10.     fprintf(fido, %d, R1);
  11.     fprintf(fido, %d, R2);
  12. endfunction
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement