The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
15 views

How can I deal with multiple values in some attribute?

I'm using WEKA tool for clustering data analysis, however in some of my attributes, there are many values within the domain. Specifically, I need to represent some information about proteins and the ...
1
vote
2answers
28 views

Trying to find an good data - representation for a genetic (evolutionary) algorithm, but I just can't imagine one

Disclaimer First of all, this is for homework, so don't ask why it's so contrived, it is this way and it can only be this way. (I get a lot of "how about if you change something"), sorry ... I can't. ...
1
vote
1answer
31 views

How to represent a legacy database using Hibernate?

I have the follow legacy database structure and content: order parameter value -------------------------------- 1 user_login user 1 user_password 123456 1 user_level ...
4
votes
5answers
120 views

How do you represent large matrices from your algorithm to aid you when debugging?

The basic approach to this is printing the matrices. But when you get to bigger numbers, even though you're debugging (the algorithm might not work for 2 by 2 or 4 by 4 matrices), it starts to get ...
0
votes
1answer
35 views

Graphical representation in R: 2 as axes and 1 as volume

everybody. I am writing this question because I need your help to do a graphical representation in R. I would like to do a graphic as a coordinate system (two variables) and another variable ...
0
votes
2answers
37 views

Oracle representing hierarchy of data combinations

I'm having an Oracle volume of data issue, which I think is being caused by a data representation problem. I have a hierarchy made from seven different lists, and need to store all the unique ...
0
votes
1answer
210 views

Gomoku datas representation in C

I'm working on a Gomoku game I'm currently done with GUI etc, and I need to code the IA and Rule Checker (for optional rules such as Capture, forbidden patterns etc). I was planning on representing ...
3
votes
2answers
89 views

Efficient data interchange format using only C-style fprintf() statements?

I need to transfer the very large dataset (between 1-10 mil records, possibly much more) from a domain-specific language (whose sole output mechanism is a C-style fprintf statement) to Python. ...
0
votes
1answer
221 views

9-bit floating point representations

I'm having some trouble with a problem I've run into dealing with floating points. I'm having a hard time moving from floating point representation to decimal values and also from format A of the ...
0
votes
2answers
55 views

How would this hierarchy for knowledge representation be extended?

I've tried making a hierarchy of all forms of knowledge - including physical objects, numbers, procedures etc. How could this be improved? How would a sentence such as "Jack is producing music sitting ...
0
votes
1answer
103 views

How to store nested, numbered paragraphs (1, 1.1, 1.1.1)?

For example: Guide to Panel Controlling 1: Make sure the panel is closed. 2: Once closed, open the other panel. 2.1: Do this and this... You can also include in my requirements ...
0
votes
0answers
34 views

Data representation. Looking for ideas.

I have a system that tracks XMLs (contains proprietary info) as they go through different processes and validation through out the system and into production. I'm buidling an analytical tool that ...
2
votes
2answers
293 views

How to display xml data in asp.net

Here is my xml file: <?xml version="1.0" encoding="utf-8"?> <entry> <comment Name="xxx" Location="India" Email="xxx@email.com" Gender="Male" /> <comment Name="yyy" ...
1
vote
2answers
102 views

how to represent event data in event-driven communication?

I'm trying to create a central event dispatching system using kind of an Observer pattern for my small RPG project, and I need advice on how best to represent event data. I'll have an EventManager ...
0
votes
1answer
80 views

efficient way to generate a table in vb.net

This question might sound a lot vague. What I'm looking for is a way to generate a html <table></table>. I need to build this table: Actually the top row is a header and the first two ...
0
votes
2answers
354 views

Type-Length-Value vs. defined/structured Length-Value

There's no doubt that a length-value representation of data is useful, but what advantages are there to type-length-value over it? Of course, using LV requires the representation to be predefined or ...
1
vote
0answers
78 views

Efficiently wiring together data and representation via GUI Control Factories?

Lets say I have a class StaticVehicleInformation which holds "static" information about a vehicle, e.g. its type, serial-number or color. Now I have a tracking application to track driving vehicles ...
4
votes
3answers
259 views

Efficiency: char array vs int array

I am programming a game and want to represent a board using an array. I am looking for efficiency since I am going to do many iterations. In this case, both an int array or a char array seem ...
1
vote
3answers
186 views

What should I use for a Client/Server Multi-player survival game? Java

I am making a game in java and it is going well. I want to early on implement multi-player so I build on it instead of porting the entire game to multi-player when it has a ton of different features.. ...
1
vote
1answer
85 views

How to respresent 3D (x y z) value as a single value?

How can i represent a 3D coordinate as a singular value? I need this since the libsvm requieres the input data to be 1-dimensional? Thank you
2
votes
6answers
72 views

How to represent data that may not be set

I have a class containing a number of properties, something like: public class Update { public int Quantity { get; set; } public decimal Price { get; set; } public string Name { get; set; ...
2
votes
5answers
376 views

How do I pick a good representation for a board game tactic for a genetic algorithm?

For my bachelor's thesis I want to write a genetic algorithm that learns to play the game of Stratego (if you don't know this game, it's probably safe to assume I said chess). I haven't ever before ...
3
votes
3answers
269 views

How to effectively store a large set of permutations?

Let's say we have a list of elements: [{dog,1},{dog,2},{cat,1},{cat,2},{bird,1},{bird,2},...] I would like to store all possible permutations of this list in the RAM. Since the list can be pretty ...
5
votes
1answer
179 views

pie chart of co-presence in clusters for about 10 factors in r

I've got a two-column dataset with about 30000 clusters and 10 factors like this: cluster-1 Factor1 cluster-1 Factor2 ... cluster-2 Factor2 cluster-2 Factor3 ... And I would like to represent the ...
8
votes
3answers
922 views

How to represent a binary tree with tables (html)?

Here is a brain-teaser for the brave. I've been at it for days and just can't come with the solution. I wanted to come out with something like this: Using html, css and php only. I got near, but ...
3
votes
3answers
261 views

How to represent complex and hybrid data

I have a quite complicated question. I'm looking for a javascript or PHP script that can take about any data (arrays, mysql queries ...) and make a table / pivot table / chart of it. to be simple, I ...
2
votes
1answer
473 views

Erlang binary representation for float & integer, discrepancy?

Got another Erlang binary representation query ('coz that's what I am reading about these days, and need for binary protocol implementation). If I understand the type-specifier properly, then, for a ...
2
votes
5answers
4k views

what is binary data?

gcc 4.6.0 What does binary data look like? Is it all 1's and 0's. I was just wondering, as I was talking to another programmer about copying strings and binary data. Normally, I use strcpy/strncpy ...
1
vote
2answers
345 views

What's the best way to store a deck of cards in database?

I'm working on a application that needs to store a deck of hands in database. I'm not sure whats is the best way to represent this in a database. The deck will be pre-dealt to 4 hands with each ...
0
votes
1answer
56 views

A particular database design question

My current database consists of the following tables. Store users ratings of given questions - user( uid(varchar), qid(varchar), rating(varchar), primary key(uid, qid) ) Store the question and its ...
3
votes
1answer
179 views

Visual representation of sets

I have some experimental data and I have decided to represent them as sets. Let's say, there is a main set called E={a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s} (blue circle) and several sub-sets B (red ...
2
votes
4answers
210 views

What is the name of a data structure looking like bowling pins?

First of all, sorry for the title. Someone please propose a better one, I really didn't know how to express my question properly. Basically, I'm just looking for the name of a data structure where ...
3
votes
5answers
706 views

Representing dynamic typing in C

I'm writing a dynamically-typed language. Currently, my objects are represented in this way: struct Class { struct Class* class; struct Object* (*get)(struct Object*,struct Object*); }; struct ...
1
vote
2answers
449 views

Which data structure best represents this data?

Is this a list of lists or just a bunch of trees(forest)?
7
votes
4answers
373 views

Does const_cast ever cause actual code emission?

Is it true that const_cast is just a way to tell the compiler "stop moaning, treat this as a non-const pointer"? Are there any cases when const_cast itself is translated into actual machine code?