Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. GAMMA(indbeta,:) = GAMMA(indbeta,:)/GAMMA(indbeta,alpha);
  2. GAMMAMOINS = [GAMMA(1:indbeta-1,:);GAMMA(indbeta+1:m,:)];
  3. GAMMAMOINS = GAMMAMOINS - GAMMAMOINS(:,alpha) * GAMMA(indbeta,:);
  4. GAMMA = [GAMMAMOINS(1:indbeta-1,:); GAMMA(indbeta,:); GAMMAMOINS(indbeta:m-1,:)];
  5. %
  6. z = c(JB)'*GAMMA(:,JN);
  7. pentes = c(JN)' -z;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement