Software Listing: Repetitions
- Fore Words Pro
- License: Shareware
- Price: 29

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.
- Publisher: Cro-Code Software
- Date: 18-02-2006
- Size: 740 KB
- Platform: Win2000, Windows Server, WinOther
- FullRecall
- License: Shareware
- Price: 24

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
- stringCollapser
- License: Freeware
- Price: 0.00

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..
- Publisher: Avinash Rude
- Date: 26-05-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- VTrain (Vocabulary Trainer)
- License: Shareware
- Price: 19.00

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 PocketPC
- License: Shareware
- Price: 29.95

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...
- Publisher: LearnWords Software
- Date: 17-07-2008
- Size: 959 KB
- Platform: Handheld, Pocket PC, Windows CE, Windows Mobile
- Cows and Bulls
- License: Shareware

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
- License: Shareware

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.
- Publisher: Jonas Lundgren
- Date: 11-05-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- VChooseKO
- License: Shareware

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
- License: Shareware

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
- License: Shareware

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
- Spike Train Regularity Analysis
- License: Shareware

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..
- Publisher: Matthew Wright
- Date: 05-05-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Rationalized Arcsine Transform
- License: Shareware

% 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.
- Publisher: Piotr Majdak
- Date: 08-03-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Memostation 2010
- License: Shareware
- Price: 28.00

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.
- Publisher: Memostation
- Date:
- Size: 105472 KB
- Platform: Windows 7, WinOther, WinVista
- Partitura Magica
- License: Shareware

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 for Windows
- License: Freeware
- Price: 0.00

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)
*...
- Publisher: Bulat Ziganshin
- Date:
- Size: 7874 KB
- Platform: WinOther
- ASD Clock
- License: Freeware
- Price: 0.00

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).
- Publisher: axonnsd.org
- Date:
- Size: 7260 KB
- Platform: Win2000, WinOther, WinServer
- .Net Animation Control
- License: Shareware

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...
- Publisher: Soft Group Components
- Date:
- Size: 1710 KB
- Platform: WinOther
- Breathe142
- License: Shareware
- Price: 9.95

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.
- Publisher: yeohhs.com
- Date:
- Size: 71 KB
- Platform: Win2000, Windows Server, WinOther, WinVista
- My Gym Personal Trainer Free
- License: Freeware
- Price: 0.00

- 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

Type in your lift + number of repetitions and calculate your 1RM (1 rep max).
- Publisher: Haavard Heggheim
- Date:
- Size: 1024 KB
- Platform: Windows Phone, WinMobile












