Software Listing: Repetitions

Fore Words is Microsoft Word add-in, containing small and easy-to-use program called Repetyler. This tool quickly scans the document and provides you with full picture of repetitions (either words or phrases) in text. Such information can help to improve (or just examine) the writing style in business documentation, literature text, correspondence, etc. Excessively frequent constructions and so called words-parasites can be invisible at a first glance, but drastically affect reader's impression in a wrong way. On the other hand, repetition analysis can help you to build the true portrait of person or find implicit messages in formal language.

  • Platform: Win2000, Windows Server, WinOther

FullRecall is a software that learns itself about your memory in order to help you memorize knowledge effectively by scheduling optimal intervals between repetitions. Uses artificial neural network, which gradually grasps your forgetting curve, to schedule reviews for a day when you'll be close to forgetting an information. With FullRecall you can learn the most in the minimum time without worrying about forgetting what you have already learned..

  • Publisher: Cerbosoft
  • Date: 14-10-2006
  • Size: 603 KB
  • Platform: Linux, Win2000, Windows Server, WinOther

Example 1- Input string = 'abc,abc,abc,dcf,dcf,ef'. output string ='3abc,2dcf,1ef' Example 2- Input string = 'xyzr,abdc,abdc,haha,haha'. output string ='1xyzr,2abdc,2haha' Explanation: This function collapses a comma separated long string, containing sub-strings, into a possibly smaller string by replacing repeated sub-strings by counts of repetitions of substrings..

  • Platform: Matlab, Scripts

VTrain is a flashcard-based tool used in 20+ universities. Its unique spaced learning system guarantees you will remember any foreign word for years after only a few repetitions. It groups the flashcards in ''cardfile boxes'' representing different levels of performance, so that you can review the most difficult cards more often. Moreover, it includes an automatic scheduling facility that draws up a timetable of spaced repetitions for you and reminds you when a flashcard has to be reviewed again. The goal of this is to beat what psychologists call the ''forgetting curve'', with minimum effort. --- On the other hand, VTrain includes a rich text editor that supports image edition and voice recording via OLE.

  • Publisher: Paul Raedle
  • Date: 01-08-2005
  • Size: 4296 KB
  • Platform: Win2000, Windows Server, WinOther

LearnWords - training program to accelerate learning foreign languages (words, phrases) on PC, PDA, smartphone. LearnWords PocketPC is edition for Pocket PC and Windows Mobile 2003 devices. For each word of dictionary it is necessary to execute a sequence of six basic exercises ("Card", "Mosaic", "Select translation", "Guess translation", "Select word", "Writing"). Exercises change automatically as you reach a certain level of points. Points are added for the correct answer and are lost for the wrong answer. Features: - repeating of words is the system of scheduling repetitions - automoving of words is the method of passive study like the slide-show with words - transcription and pronunciation of words - support of illustrations, color mode for each exercise - statistics of learning: total time of study, average time of...

  • Platform: Handheld, Pocket PC, Windows CE, Windows Mobile

The players(the computer and you) think of a secret three digit number using digits from 1 to 9 without any repetitions. The objective of the game is to guess the opponent's secret number first by taking turns. The number of cows in a guess is the number of digits that are in the guess and also in the opponent's secret number but are in different positions. The number of bulls in a guess is the number of digits that are in the guess and also in the opponent's secret number and also are in the same position. eg 1: secret number: 625 Guess: 165 cows = 1 bulls = 1 eg 2: secret number: 986 Guess: 896 cows = 2 bulls = 1 The guesses made by the computer and the player are logged in the GUI in the two tables provided along with the corresponding number of cows and bulls(See attached screenshot).

  • Publisher: Y Vineel
  • Date: 19-02-2013
  • Size: 82 KB
  • Platform: Matlab, Scripts

ICHOOSE(N,K) gives all combinations of choosing K indices from the set 1:N without order and without repetitions. EXAMPLE: ind = ichoose(4,2); v = 'ABCD'; v(ind) % ['AB';'AC';'AD';'BC';'BD';'CD'] ICHOOSE is certainly not unique. Here is a comparison with other codes using TIMEIT by Steve Eddins. Note that VCHOOSEK is a MEX-code. f1 = @() nchoosek(1:24,8); f2 = @() combinator(24,8,'c'); f3 = @() ichoose(24,8); f4 = @() VChooseK(int8(1:24),8); timeit(f1) % 16.1 sec (NCHOOSEK by MathWorks) timeit(f2) % 1.17 sec (COMBINATOR by Matt Fig) timeit(f3) % 0.110 sec (ICHOOSE by Jonas Lundgren) timeit(f4) % 0.

  • Platform: Matlab, Scripts

VChooseKO(V, K) creates a matrix, which rows are all permutations of choosing K elements of the vector V with order and without repetitions. INPUT: V: Array of class DOUBLE, SINGLE, (U)INT8/16/32/64, LOGICAL, CHAR. K: Number of elements to choose. OUTPUT: Y: [N!/(N-K)!, K] matrix with N is the number of elements of V. Y has the same class as the input V. The rows are sorted in lexicographical order: smaller indices at first. EXAMPLES: Choose 2 elements from [1, 2, 3]: VChooseKO(1:3, 2) % ==> [1,2; 1,3; 2,1; 2,3; 3,1; 3,2] For speed cast the input to integer types or SINGLE whenever possible: Y = VChooseKO(uint8(1:100), 3); % 5 times faster than: Y = VChooseKO(1:100, 3); To get the permutations of cell arrays, permute the index: C = {'a', 'b', 'c', 'd'}; C2 = C(VChooseKO(uint8(1:4), 2)) ==> C2 = {'a','b'; 'a','c';...

  • Publisher: Jan Simon
  • Date: 23-04-2013
  • Size: 20 KB
  • Platform: Matlab, Scripts

VChooseKR(V, K) creates a matrix, which rows are all combinations created by choosing K elements of the vector V without order and with repetitions. INPUT: V: Array of class DOUBLE, SINGLE, (U)INT8/16/32/64, LOGICAL, CHAR. Prefer (U)INT8 or (U)INT16 for speed. K: Number of elements to choose. OUTPUT: Y: Matrix of size [(N+K-1 over K), K] and same class as V. EXAMPLES: Choose 2 elements from [1,2,3,4]: VChooseKR(1:4, 2) ==> [1,1; 1,2; 1,3; 1,4; 2,2; 2,3; 2,4; 3,3; 3,4; 4,4] For speed cast the input to integer types if possible: Y = VChooseKR(int8(1:64), 3) is 6 times faster than with DOUBLEs! To get the combinations of cell arrays, use the combinations of the index: C = {'a', 'b', 'c', 'd'}; C2 = C(VChooseKR(1:4, 2)) ==> C2 = {'a','a'; 'a','b'; 'a','c'; 'a','d'; 'b','b'; 'b','c'; .

  • Publisher: Jan Simon
  • Date: 17-04-2013
  • Size: 10 KB
  • Platform: Matlab, Scripts

VChooseKRO(V, K) creates a matrix, which rows are all permutations created by choosing K elements of the vector V with order and with repetitions. INPUT: V: Array of class DOUBLE, SINGLE, (U)INT8/16/32/64, LOGICAL, CHAR. Prefer (U)INT8 or (U)INT16 for speed. K: Number of elements to choose. OUTPUT: Y: Matrix of size [NUMEL(V)^K, K]. Y has the same class as the input V. EXAMPLES: Choose 2 elements from [1,2,3]: VChooseKRO(1:3, 2) ==> [1,1; 1,2; 1,3; 2,1; 2,2; 2,3; 3,1; 3,2; 3,3] For speed cast the input to integer types if possible: Y = double(VChooseKRO(int16(1:1000), 2)); is faster than: Y = VChooseKRO(1:1000, 2); To get the permutations of cell arrays, permute the index: C = {'a', 'b', 'c', 'd'}; C2 = C(VChooseKRO(1:4, 2)) ==> C2 = {'a', 'b'; 'a', 'c'; 'a', 'd'; 'b', 'c'; 'b', 'd'; 'c', 'd'} This MEX version is...

  • Publisher: Jan Simon
  • Date: 26-01-2013
  • Size: 10 KB
  • Platform: Matlab, Scripts

The variation in Inter-Spike Interval (ISI) between repetitions of a stimulus such as a tone burst for auditory neurons is one of the standard criteria used to classify their responses. The standard method uses bins and produces a noisy and biased estimate of the required quantity. This function calculates it exactly..

  • Platform: Matlab, Scripts

% RAU(X,N) transforms the number of correct responses X to the % rationalized arcsine (rau). N gives the number of repetitions. % % This function allows to use ANOVA statistics with percent correct scores % because: 1) RAUs are normally distributed; 2) mean and variance of RAUs % are not correlated with eachother; and 3) likelihood that a score will % increase/decrease will remain constant over the range. % % RAU=RAU(X,N,opt) defines one of the following options: % 'Pc' ... X is given in percent correct scores (0..100%) % 'X' ... X is given in the number of correct responses (default) % % The formula are based on Sherbecoe and Studebaker, % Int.

  • Platform: Matlab, Scripts

Memostation is planning repetitions of items. Item is for example a word from foreign language.

The program remembers how well you know each item and calculates when you will forget an item, before this happens Memostation will remind you.

The program will allow you to manage daily workload, this means, that you can specify number of items to repeat, in addition to new items.

As you progress with time, you will acquire a large number of items. The length of repetition will increase for older items you have already learned. Thus you don`t need to keep repeating items that you already know.

  • Platform: Windows 7, WinOther, WinVista

A tool for displaying scanned musical sheets The music scrolls as a continuous stream over the PC screen. The position of the staves on the page are automatically detected. Repetitions in the piece can be easily configured..

  • Publisher: klafekie
  • Date:
  • Size: 4075 KB
  • Platform: WinOther

FreeArc is a modern general-purpose archiver. Main advantage of FreeArc is fast but efficient compression and rich set of features.

FreeArc works 1.5 3 times faster than best compression programs.

Advantages

* Free, open-source, with console and GUI versions for both Windows and Linux
* Includes LZMA, PPMD, TrueAudio and generic Multimedia compression algorithms with automatic switching by file type
* Filters that further improve compression: REP (finds repetitions at the distances up to 1gb), DICT (dictionary replacements for texts), DELTA (improves compression of tables in binary data), BCJ (executables preproccesor) and LZP (removes repetitions in texts)
* Special compression algorithms are used in fast compression modes (GRZIP for texts and Tornado for binary data)
*...

  • Platform: WinOther

ASD Clock is a Free, Open Source Windows clock replacement. It's super customizable, comes with a great Alarm Management system, has Atomic Clock, clock labels customizations and even an Alarm Synchronization tool which can be used to sync multiple installations! You can use ASD Clock to shut down your computer at a certain time or even start or stop programs. The alarms can be repetitive, countdown or even repetitive countdown. The appearance of the alarms can be customized in the most complex of Details, using window animations, fade-ins, slide-ins and even the sound of the alarm can be fully customized (custom mp3 or wav, numbers of repetitions and distance Between repetitions).

  • Platform: Win2000, WinOther, WinServer

Softgroup .Net Animation Control is a fast, small, lightweight and easy to use .NET control that can play an Audio-Video Interleaved (AVI) file integrated AVI system animation.

To use Softgroup .Net Animation Control simply add .Net Animation Control to the Toolbox window of Microsoft Visual Studio and drag it to your form.

With Softgroup .Net Animation Control you can:

* Play an AVI file
* Support auto center of animation
* Support auto play of animation
* Support play from / to any frame
* Support unlimited or custom repetitions
* Support transparent
* Support timer or thread play mode
* Play, Stop and Seek method
* Play system Find Folder animation
* Play system Find File animation
* Play system Find Computer animation
* Play system Internet...

  • Platform: WinOther

This program is a visual and audio aid to guide you during your breathing exercise. It is based on the breathing exercise described in ancient Eastern and Oriental practices. In this breathing exercise, you are to inhale for one count, hold your breath for four counts and then exhale for two counts. For example, if you inhale for 4 seconds, you hold your breath for 16 seconds and then exhale for 8 seconds. How to use Breathe-1:4:2? * To set the "inhale" number of seconds, set the Sec. up-down control value to your desired value. The minimum Sec. value is 1 and the maximum is 32. * To set the number of repetitions, set the Rep.

  • Platform: Win2000, Windows Server, WinOther, WinVista

- PMGR includes over 100 exercises.
- Logs all sets and supersets you do:
A A Weights, Reps, Breaks,
- PMGR allows you to progress. Let me suggest the repetitions to be performed, weight lifting, Breaks, etc ..
- Evaluate your progress following your body measurements with Antropometric (% Body fat, body mass index, etc. ..)
- PMGR Analyze your workouts indicating your hits and misses..

  • Publisher: JcSoftM
  • Date:
  • Size: 5017 KB
  • Platform: Android, WinMobile
  • 1RepMax
  • License: Freeware
  • Price: 0.00
  • Rating

Type in your lift + number of repetitions and calculate your 1RM (1 rep max).

  • Platform: Windows Phone, WinMobile

Page: 1 | 2 | 3 | 4 | 5 | Freeware

New Reviews


Aqua Pearls Game

Aqua Pearls game (or simply aqua pearls) is a free ware downloadable game that has many elements of the classic game zuma. In aqua pearls (and zuma) A variety of coloured balls will slowly work their way around the screen on a predetermined path, as ...


Ultrasurf

There are many cases where you need to access a website which is otherwise blocked by your ISP. You need to use a proxy but a using free proxy that is never easy and convincing. Also, whenever you want to hide your identity online, you need to use ...


Joomla

Nowadays, most people use Joomla, Wordpress or Drupal to make their websites. Creating websites by the use of CMSs is an easy yet effective way as one does not require to code heavily. We’ll be talking about Joomla, a powerful Content ...


SD QuickExec

Im always scouting the internet looking for quality applications that’ll help me save time carrying out some of the basic things I do every time I switch on my computer. For example, launch my internet browser, email client, iTunes and so on. ...


SpeedUpMyPC

SpeedUpMyPC is a program which apparently has the capabilities to boost your system performance by resolving computer issues it finds after scanning though your system SpeedUpMyPC is most definitely not the only piece of software that claims to be ...


File Finder

File Finder is such a simple and easy program to use to track down and locate files and folders on your system. I think this has to be a fantastic selling point, but maybe also its downfall. It instantly took me back to the retro MS-DOS based ...


Angry Birds

Angry birds is one of the most successful games of all time, despite the fact that it has been free from the very beginning. Angry birds is a experimental physics game, with the objective being to fling all of your birds into the structures occupied ...


Soft4Boost Disk Cleaner

Soft4Boost Disk Cleaner is a really easy program to use. There are thousands of different applications out there, free and paid, that try and remove junk from your system to help improve speed and overall system performance. Soft4Boost Disk Cleaner ...


Access Controller

Access Controller is an application that helps secure your computer desktop whilst your away from it. When you're away from your computer, you can enable Access Controller so that a password is required to unlock your desktop and continue ...



New Downloads

USB Block

USB Block lets you protect
your PC from data loss.
Prevent duplication of your
data to External Drives, USB
Ports, Flash ...

Slitheris Network Discovery

Slitheris Network Discovery is
a new network tool from Komodo
Labs that provides world-class
ipscans with a simple, ...

Zenkit for Windows

Organize anything with Zenkit
- the project management tool
that grows with you. Whether
you need a simple to-do list,
a ...

Raster to Vector Converter
SDK

Raster to Vector converter
SDK, which can high-speed
convert raster bitmap into
vector image.it supports such
all kinds ...

PDF Content Split SA

This is an ideal product if
you had for example a PDF
statement that needed
splitting up on account
number, PDF Content ...

Vembu BDR Suite

Vembu BDR Suite is an
effective VMware Backup
software designed for VM
administrators. It is an
unified backup solution ...

iPhone Backup Extractor

The iPhone Backup Extractor is
a simple to use software that
recovers files from iTunes or
iCloud backups. Supports all
...

Passwords Generator

Simplest way to get random and
difficult to crack passwords
is to use Passwords Generator.
This program is incredibly ...

IRCommand2

IRCommand2 is IR (infrared)
and X10 remote control
software for the PC that
enables you to control
virtually any device ...