Skip to content

Instantly share code, notes, and snippets.

package com.gmail.holubvojtech.consoleapps.gauss;
public class Matrix {
private double[][] mat; //double [y][x]
private int cols; //max x
private int rows; //max y
public Matrix(double[][] mat) {
this.mat = mat;
@holubv
holubv / fxlib.h
Created September 21, 2016 16:21
CASIO fx-9860G SDK Library (with documentation) https://edu.casio.com/
/*****************************************************************/
/* */
/* CASIO fx-9860G SDK Library */
/* */
/* File name : fxlib.h */
/* */
/* Copyright (c) 2006 CASIO COMPUTER CO., LTD. */
/* */
/*****************************************************************/
#ifndef __FXLIB_H__