Advertisement
Guest User

macierz_head.h

a guest
Feb 1st, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. #ifndef MACIERZ_HEAD_H_INCLUDED
  2. #define MACIERZ_HEAD_H_INCLUDED
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. typedef struct matrix
  6. {
  7. double **dane;
  8. size_t kolumny;
  9. size_t wiersze;
  10. }Matrix;
  11. double srednia(Matrix*A);
  12. double my_max(double *tab, int number);
  13. double norma_kolumnowa(Matrix *A);
  14. double norma_wierszowa(Matrix *A);
  15. int wczytywanie(Matrix *M);
  16. void zwalnianie(Matrix *M);
  17. void analiza(Matrix M);
  18. void zapis(Matrix M,double NK,double NW,double sr);
  19. void zklawiatury(Matrix *M);
  20. #endif // MACIERZ_HEAD_H_INCLUDED
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement