@designliquido/delegua-matematica
Version:
Biblioteca de manejo de operações matemáticas em português, para JavaScript e Delégua
318 lines • 7.63 kB
TypeScript
import { gerarPontosAbscissa, somaElementosMatriz } from './algebra-linear';
import { limite } from './calculo-diferencial-integral';
import { jurosCompostos, jurosSimples } from './financeira';
import { aleatorio, exp, logaritmo, potencia, raizQuadrada } from './funcoes-algebricas';
import { fun1, fun1R, fun2, fun2R, linspace, xVertice, yVertice } from './funcoes-primeiro-grau';
import { areaCirculo, areaLosango, areaQuadrado, areaRetangulo, areaTrapezio, areaTriangulo, distanciaDoisPontos, pontoMedio } from './geometria-plana';
import { aprox, arredondarParaBaixo, pontosAleatorios } from './miscelanea';
import { arcoCosseno, arcoSeno, arcoTangente, cosseno, graus, pi, radiano, seno, tangente } from './trigonometria';
import { comprimentoVetor, numeroOcorrencias } from './vetores';
export declare const DeleguaModuloMatematica: {
somaElementosMatriz: {
tipoRetorno: string;
funcao: typeof somaElementosMatriz;
argumentos: {
nome: string;
tipo: string;
}[];
};
gerarPontosAbscissa: {
tipoRetorno: string;
funcao: typeof gerarPontosAbscissa;
argumentos: {
nome: string;
tipo: string;
}[];
};
limite: {
tipoRetorno: string;
funcao: typeof limite;
argumentos: {
nome: string;
tipo: string;
}[];
};
jurosSimples: {
tipoRetorno: string;
funcao: typeof jurosSimples;
argumentos: {
nome: string;
tipo: string;
}[];
};
jurosCompostos: {
tipoRetorno: string;
funcao: typeof jurosCompostos;
argumentos: {
nome: string;
tipo: string;
}[];
};
aleatorio: {
tipoRetorno: string;
funcao: typeof aleatorio;
argumentos: any[];
};
exp: {
tipoRetorno: string;
funcao: typeof exp;
argumentos: {
nome: string;
tipo: string;
}[];
};
logaritmo: {
tipoRetorno: string;
funcao: typeof logaritmo;
argumentos: {
nome: string;
tipo: string;
}[];
};
potencia: {
tipoRetorno: string;
funcao: typeof potencia;
argumentos: {
nome: string;
tipo: string;
}[];
};
raizQuadrada: {
tipoRetorno: string;
funcao: typeof raizQuadrada;
argumentos: {
nome: string;
tipo: string;
}[];
};
fun1: {
tipoRetorno: string;
funcao: typeof fun1;
argumentos: {
nome: string;
tipo: string;
}[];
};
fun1R: {
tipoRetorno: string;
funcao: typeof fun1R;
argumentos: {
nome: string;
tipo: string;
}[];
};
fun2: {
tipoRetorno: string;
funcao: typeof fun2;
argumentos: {
nome: string;
tipo: string;
}[];
};
fun2R: {
tipoRetorno: string;
funcao: typeof fun2R;
argumentos: {
nome: string;
tipo: string;
}[];
};
xVertice: {
tipoRetorno: string;
funcao: typeof xVertice;
argumentos: {
nome: string;
tipo: string;
}[];
};
yVertice: {
tipoRetorno: string;
funcao: typeof yVertice;
argumentos: {
nome: string;
tipo: string;
}[];
};
linspace: {
tipoRetorno: string;
funcao: typeof linspace;
argumentos: {
nome: string;
tipo: string;
}[];
};
areaCirculo: {
tipoRetorno: string;
funcao: typeof areaCirculo;
argumentos: {
nome: string;
tipo: string;
}[];
};
areaQuadrado: {
tipoRetorno: string;
funcao: typeof areaQuadrado;
argumentos: {
nome: string;
tipo: string;
}[];
};
areaRetangulo: {
tipoRetorno: string;
funcao: typeof areaRetangulo;
argumentos: {
nome: string;
tipo: string;
}[];
};
areaLosango: {
tipoRetorno: string;
funcao: typeof areaLosango;
argumentos: {
nome: string;
tipo: string;
}[];
};
areaTrapezio: {
tipoRetorno: string;
funcao: typeof areaTrapezio;
argumentos: {
nome: string;
tipo: string;
}[];
};
areaTriangulo: {
tipoRetorno: string;
funcao: typeof areaTriangulo;
argumentos: {
nome: string;
tipo: string;
}[];
};
distanciaDoisPontos: {
tipoRetorno: string;
funcao: typeof distanciaDoisPontos;
argumentos: {
nome: string;
tipo: string;
}[];
};
pontoMedio: {
tipoRetorno: string;
funcao: typeof pontoMedio;
argumentos: {
nome: string;
tipo: string;
}[];
};
aprox: {
tipoRetorno: string;
funcao: typeof aprox;
argumentos: {
nome: string;
tipo: string;
}[];
};
arredondarParaBaixo: {
tipoRetorno: string;
funcao: typeof arredondarParaBaixo;
argumentos: {
nome: string;
tipo: string;
}[];
};
pontosAleatorios: {
tipoRetorno: string;
funcao: typeof pontosAleatorios;
argumentos: {
nome: string;
tipo: string;
}[];
};
pi: {
tipoRetorno: string;
funcao: typeof pi;
argumentos: any[];
};
graus: {
tipoRetorno: string;
funcao: typeof graus;
argumentos: {
nome: string;
tipo: string;
}[];
};
radiano: {
tipoRetorno: string;
funcao: typeof radiano;
argumentos: {
nome: string;
tipo: string;
}[];
};
seno: {
tipoRetorno: string;
funcao: typeof seno;
argumentos: {
nome: string;
tipo: string;
}[];
};
cosseno: {
tipoRetorno: string;
funcao: typeof cosseno;
argumentos: {
nome: string;
tipo: string;
}[];
};
tangente: {
tipoRetorno: string;
funcao: typeof tangente;
argumentos: {
nome: string;
tipo: string;
}[];
};
arcoCosseno: {
tipoRetorno: string;
funcao: typeof arcoCosseno;
argumentos: {
nome: string;
tipo: string;
}[];
};
arcoSeno: {
tipoRetorno: string;
funcao: typeof arcoSeno;
argumentos: {
nome: string;
tipo: string;
}[];
};
arcoTangente: {
tipoRetorno: string;
funcao: typeof arcoTangente;
argumentos: {
nome: string;
tipo: string;
}[];
};
comprimentoVetor: {
tipoRetorno: string;
funcao: typeof comprimentoVetor;
argumentos: {
nome: string;
tipo: string;
}[];
};
numeroOcorrencias: {
tipoRetorno: string;
funcao: typeof numeroOcorrencias;
argumentos: {
nome: string;
tipo: string;
}[];
};
};
//# sourceMappingURL=delegua-modulo.d.ts.map