Hi,
I am in search of few good hahing functions. The input key will be the address of the variable, based on that the hashing needs to be performed.
One technique I now currently is :http:...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
I'm a bit confused about what the update sequence is when doing q-learning.
Should one update states in a path as if walking through it (eg, always take the current best transition)? Or just u...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Code:
// Alot of functions removed from interface to illustrate point.
class CSurface
{
public:
// Construction/Destruction
CSurface(unsigned long dwWidth,unsigned long dwHei...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Understanding how to determine runtime behavior for algorithms you develop is extremely important. Conversely, understanding the runtime of known algorithms and data structures is vital to choosin...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Hi all,
I have done few lines of codes to get the largest connected components of this image which appears to be lips. The image is "label
Code:
[L,n] = bwlabel(I2,4);
figure(4...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Hi all,
I am new in Matlab.
Code:
for img=1:5
a=imread(['input\m',int2str(img),'.pgm']);
:
:
imwrite(I2,['result\m',int2str(img),'.pgm']);
end
My code can only run if i ch...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Hi
I need boyer moore alogrithim for hex string search ( as implemneted in hex or binary editors) .I want to to serach hex string in byte array .Any one can help me ..
...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
does anyone know some algorithm for compresion text.
i want this algorithm to be lossy(not like hufman).
thanks.
...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Dear all,
I have HSV algorithm posted under "color detection algorithm" but i failed to locate the lips as i did by using RGB algorithm. I set the H to 0.1 but still with the same re...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Does anyone know how I would set up a Qix like game? Its and old arcade ame where u draw lines. How would I bind the player to the shape of the polygons and how would i check which areas are fille...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
I'm having a bit of trouble finding a way to find the best series of "moves."
I have a function that I can pass through a "board" (which is just a 2D array listing all number...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Ok, I have a 10x10 2D array serving as a grid.
1's are randomly placed in the grid, and the rest is blank.
I'm having trouble finding a way to find sets of 1's.
I'm able (via a 'Touching' ...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
As we Know,the function char *strtok( char *strToken, const char *strDelimit ) is defined in the function lib.But if I dont allow you use the function ,instead you implement the same function a...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
i have to develop a system which schedules employees after evaluating their performance. Performance part is done where results will be between 1-5.
1-Poor
2-Weak
3-Satisfactory
4-Good
...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Do you think this is a balanced damage algorithm for a game that is designed to have rated weapon damages?
Code:
#include <iostream>
unsigned long __stdcall CalcDamage(unsigned...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Does there exist any algorithm can do this in less than o(n^3) time ?
thanks.
...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
hi all , there is a problem which demands print a matrix in spiral order, for example if the matrix is like the one below:
1 2 3 4 5
6 7 8 9 10
11 12 13 14 ...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
We now consider a stack implemented using a dynamic array. In this stack as items are pushed and the stack fills up, we will double the length of the array. Now however, as items are popped and th...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Hi,
I have a task at work relating finding the two shortest paths with enough capacity between two nodes in a network. The two paths can not contain the same nodes.
The distance between co...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
The problem you are describing is a variation of the Knapsack Problem [http://en.wikipedia.org/wiki/Knapsack_problem]>, and as such it is classified as NP-Hard. This means that it is unlikely that...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Small problem here, need ideas. i'm using a struct to read a text file of the format
4
Atomic Cluster
O -0.028882 -0.317470 0.526009
O 0.887822 0.327691 0.464289
O 0.956723 -0.765947 0...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
I have a problem as following:
I have a list of roads to form a network.
Each road has length, speed, and a list of unavailable time slots (start time, end time).
The speed could vary...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
I am looking for a way to extract the ascii printable characters from binary DTP files and storing them in a .txt file so that google desktop search will index them.
That said, rather than the...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Hi folks,
I've got a pre-compiled java .class file, and looking to distinguish between a number of different algorithms. I've managed to get most of them down, however, I'm having some trouble ...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine
Hello! I've got a small problem in my program I am writing for a school project.
I'm given n numbers and my algorithm needs to find the smallest number of "moves" (a move is +1 or -1...
[Tags: No tags defined yet] - Be the first to Tag this threadAdd TagsCancel
*Note: Tags must be comma (,) seperated. For example: boardtracker, forum search, search engine