Search Results for "function point analysis" - Page 11

Showing 302 open source projects for "function point analysis"

View related business solutions
  • Train ML Models With SQL You Already Know Icon
    Train ML Models With SQL You Already Know

    BigQuery automates data prep, analysis, and predictions with built-in AI assistance.

    Build and deploy ML models using familiar SQL. Automate data prep with built-in Gemini. Query 1 TB and store 10 GB free monthly.
    Try Free
  • Our Free Plans just got better! | Auth0 Icon
    Our Free Plans just got better! | Auth0

    With up to 25k MAUs and unlimited Okta connections, our Free Plan lets you focus on what you do best—building great apps.

    You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
    Try free now
  • 1

    GridSnake

    Grid based game from the XNA Extreme 101 series

    == Requirements == To play this game you will need these installed for XNA to function properly :) 1. .Net Framework 4 http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=24872 2. XNA Framework Redistributable 4.0 http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=20914 == Credits == Design: Alan White (gamestudent.tumblr.com) Sound Files: Generated using sfxr (drpetter.se/project_sfxr.html) Level Editor: Edited using OGMO (ogmoeditor.com)
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2

    Software Estimation Library

    Software Estimation Library

    Estimate effort, time and cost to develop a software project is one of the most challenging task for IT professionals. There are several reasons for this, but the absence of technique can be a major one. To address this issue the Estimation Library has intended to be used as a tool to perform software estimation calculations in conformity with commonly estimation techiniques.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3
    GLUT Complex Function Plotter

    GLUT Complex Function Plotter

    GCFP is an open-source tool for visualizing complex functions.

    GLUT Complex Function Plotter (GCFP) is an open-source tool for visualizing complex functions using OpenGL. It can be customized using LUA. Please note: I wrote GCFP while learning for an exam in complex analysis to understand the behavior of some complex functions. As it has proven useful to me I thought I would share it though obviously GCFP could be improved in many ways..
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4

    AI Engine for Mancala

    AI engine developed for Mancala game using CPP.

    ...generateBestMove() function used to calculate the best move based in current position in the board. findBestMove() returns the best pit position which will create most point for the AI player. Enjoy ...
    Downloads: 0 This Week
    Last Update:
    See Project
  • $300 in Free Credit Towards Top Cloud Services Icon
    $300 in Free Credit Towards Top Cloud Services

    Build VMs, containers, AI, databases, storage—all in one place.

    Start your project in minutes. After credits run out, 20+ products include free monthly usage. Only pay when you're ready to scale.
    Get Started
  • 5
    GeniusTrader

    GeniusTrader

    GeniusTrader is a stock market trading systems toolkit

    GeniusTrader aims to be a full featured toolbox for creating stock market trading systems based on Technical-Analysis methods. GeniusTrader implements trading systems defined in terms of: specific entry-exit points, current cash, current positions, trade type and most traditional technical analysis indicators. Market data time-periods range from ticks to years. Backtesting defined trading systems as well as tools to develop and test technical market indicators are provided. Visit...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6

    FactHash

    Factorial Hashing Function

    My first attempt at a one-way hashing class/algoritm, built as a python class. It produces variable length hash from a message block of the size you want. The resulting hash will be ~2x the message block in size, and should provide for at least as many bits of security as the block itself. I updated this, with a different hash than original, since I found a potential collision on some blocks, not but specific to that challenge. To further correct this, I modified the padding when it's...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7

    AI Challenges

    AI challenges

    ...Search - find the most efficient path from point A to point B on a grid. Fifteen - solve the classic fifteen puzzle. Explore - make your way past obstacles to a goal with uncertain senses and movement
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    Tidal Analysis Program in PYthon (TAPPY) uses the least squares optimization function from scipy to perform a harmonic analysis (calculate amplitude and phases of a set of sine waves) of a hourly time series of water level values.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    Plugin for Launchy, meant as replacement for apparently dead plugin mathy. MathyResurrected will try to replicate Mathy functionality.
    Downloads: 0 This Week
    Last Update:
    See Project
  • AI-powered service management for IT and enterprise teams Icon
    AI-powered service management for IT and enterprise teams

    Enterprise-grade ITSM, for every business

    Give your IT, operations, and business teams the ability to deliver exceptional services—without the complexity. Maximize operational efficiency with refreshingly simple, AI-powered Freshservice.
    Try it Free
  • 10
    Embedded Help System is jquery plugin for procedural ("How to") user interface assistance and it's easy to integrate into any web interface that supports Jquery. The point is to offer help to user in their working interface and in actual situation
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    LAoE
    LAoE is a rich featured graphical audiosample-editor, based on multi-layers, floating-point samples, volume-masks, variable selection-intensity, and many plugins suitable to manipulate sound, such as filtering, retouching, resampling...
    Downloads: 4 This Week
    Last Update:
    See Project
  • 12
    Headrand is a static library wrote in c that contains functions to simulate complex systems or make statistical analysis with a new approach called "random function computing"
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    Hexjector is an Opensource,Cross Platform PHP script to automate Site Pentest for SQL Injection Vulnerabilties.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    Alpha test of an XML based HDF reader
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    Client tools for the FuncNet protein function analysis platform: http://funcnet.eu/
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    Java Implementation of Bees Algorithm. It contains a BeesAlgoImpl class can extended to override the function "function" which is the objective function to be minimized. For eg, public class MyImpl extends BeesAlgoImpl { public double function(double[] x) { //Min sigma Xi^2 or Max -sigma Xi^2 double result = 0; for (int j = 0; j < var; j++) { //var = no of variables - public field in BeesAlgoImpl class result = result + (x[j]-1) * (x[j]-1); } return (-result); } //constructor public MyImpl(){ //super( .... ) - set the no of variables, parameters n, m, e, ngh, nep, nsp (look into the bees algo paper), no of iterations, uperlimit and lower limit of search, integerize - search only integers true or false } public static void main(String[] args){ MyImpl a = new MyImpl(); a.run(); int i=0; a.optimalPoint[i]; //Xi of the optimal point } }
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    Rapidlogix
    Rapidlogix is an open source application performance management tool optimized for distributed production environments. It allows to increase time-to-market of performance improvements and prevent performance regression
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    The Calculus of Wrapped Compartments is a variant of the Calculus of Looping Sequences. CWC strongly simplifies the development of automatic tools for the analysis of biological systems. The SCWC-sim is a OCaml implementation of CWC calculus.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    A Python function library to extract EEG feature from EEG time series in standard Python and numpy data structure. Features include classical spectral analysis, entropies, fractal dimensions, DFA, inter-channel synchrony and order, etc.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20
    While resting-state fMRI is drawing more and more attention, there has not been a software for its data analysis. Based on MATLAB, we developed a package named REST. Currently REST has three main functions: function connectivity, ReHo and ALFF.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    A PHP-MySQL based software to estimate size of software projects. This tool was made to help software project managers to know function points of its projects easier, providing all necessary calculations and reports.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    Draw 2D: function chart, data points chart, statistical bar chart. It's possible to combine all 3 types of chart into one. This is powerfull and easy tool, as it gives ability to manage many charts parameters. This may often compete with Gnuplot and oth
    Downloads: 2 This Week
    Last Update:
    See Project
  • 23
    Nhabla-Bill: Is a report system a billing application inspired on Asterisk-Stat by Areski, offering many useful reports for the analysis, add to the billing function.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    Breeze a multiple class model neural network development system. Network models include multi-threaded Backpropagation and Radial Basis Function Networks, for time series prediction.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    A real-time graph plotter. While your application is computing and logging results to a CSV file using the LiveGraph Writer API, the plotter lets you visualise and monitor the results live - by instantly plotting charts and graphs of the data.
    Downloads: 1 This Week
    Last Update:
    See Project
MongoDB Logo MongoDB