Skip to content
View mrfarhadir's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report mrfarhadir

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. senil senil Public

    state for pure HTML

    TypeScript 4

  2. ntopt ntopt Public

    convert number written format to Persian text

    TypeScript 8

  3. loopback-client-api-gen loopback-client-api-gen Public

    loopback api generator for client side (Vue, React, Angular)

    JavaScript 9

  4. probability probability Public

    calculates probability of events and selections

    JavaScript 5

  5. election election Public

    A library for selecting part of the data based on simple or random weighting with different algorithms such as isolation points or popularity

    TypeScript 2

  6. Power Method Algoritym for calculati... Power Method Algoritym for calculating eig value and vector of matrix
    1
    function [eigValue,eigVector] = EigPowerMethod (A, epsilon)
    2
    [m,n]=size(A);
    3
    if (m != n) 
    4
      disp("Matrix Should Be Square");
    5
    else