Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Circonferenza - Sistema.h

Sistema.h

Caricato da: Poggi Marco
Scarica il programma completo

  1. #include <stdlib.h>
  2.  
  3. #ifndef SISTEMA_H_INCLUDED
  4. #define SISTEMA_H_INCLUDED
  5.  
  6. typedef struct
  7. {
  8.         double *elementi;
  9.         int lato;
  10. }Tmatrice;
  11.  
  12. void inizializzaMatrice(Tmatrice *, int);
  13. void deallocaMatrice(Tmatrice *);
  14. void setElemento(Tmatrice, int, int, double);
  15. double getElemento(Tmatrice, int, int);
  16. void stampaMatrice(Tmatrice);
  17. double determinante(Tmatrice);
  18. double complemento(Tmatrice, Tmatrice, int, int);
  19. int invertibile(Tmatrice, Tmatrice);
  20.  
  21. #endif // SISTEMA_H_INCLUDED