Notation refers to a specific way of writing various concepts, functions, etc. Usually it is introduced to abbreviate complicated expressions and make common idioms more readable.
0
votes
2answers
14 views
How to mock a hash of string keys in rspec which comes from a webservice in the new hash notation of ruby
When i got an response from a webservice which return a hash with string keys, i have to read them like this:
foo = @web_service.get_foo
if foo["code"] == 200
# do something
end
In the rspec i ...
0
votes
2answers
34 views
What does this notation involving angle brackets mean? [duplicate]
I'm reading Async in C# 5.0, and the section on the compiler transform contains this snippet:
public Task<int> AlexsMethod()
{
<AlexsMethod>d__0 stateMachine = new ...
3
votes
1answer
47 views
Prefixing variables names to indicate their respective scope or origin?
In the companies I've been working, I've seen a lot the use of prefixes to indicate the scope or the origin of variables, for example m for classes members, i for methods intern variables and a (or p) ...
0
votes
0answers
11 views
I have HTM numeric files that contains all forms of numbers, I nee to make a list or similar of those values
my HTM file has info like this ( quick example )
0,00 5 154 0,00 49.765,82 689,84 2,00 2,00 0,00 5.323,70 1.388,95 10,00 4,00 2,00 0,00 0,00 2 400.623,70 ...
0
votes
2answers
49 views
What is this object notation format?
I'm working on manipulating data from a program, and I came across this data format, but I can't figure out how to parse it.
response="0",num=3,list=[
{type="url1",url="http://www.xxx1.com"},
...
-1
votes
0answers
21 views
Crows foot notation: 'one' vs 'one and only one' cardinality [closed]
I am trying to draw some diagrams showing database structures using the crow's foot, but stumbled upon the question of when to use following cardinalities: 'one' and 'one and only one'. Most websites ...
0
votes
2answers
57 views
Proper %w notation usage
What are the right situations to use %w:
percent_notation = %w(first second third)
explicit = ["first", "second", "third"]
for creation of arrays? With arrays of size 501, the difference in ...
-4
votes
0answers
9 views
To find a tight bound using theta notation for the functions : f(n)= 14*6 +25 [closed]
To find a tight bound using theta notation for the functions
1.f(n)=14*6+25
2.f(n)=65*n^2+n+1
3.f(n)=17*2^n+5*n^3+n^2+n
0
votes
1answer
16 views
Reverse Polish Notation
Quick question about reverse polish notation.
Why is 2*3/(2-1)+5*(4-1)?: (original)
23*21-/541-*+
rather than 23*21-/5+41-*?
I am just confusing myself. Personally I'd have adding extra ...
6
votes
1answer
60 views
Ruby trying to grasp a new notation. (inject(: ) vs select(&:even?); why one has &?)
So, I've just learned that instead of writing things like:
[1,2,3,4,5].inject {|x,y| x + y} => 15
I could write
[1,2,3,4,5].inject(:+) => 15
I also learned that instead of writing
...
1
vote
3answers
63 views
Java How to Parse Smile notations from String
I want to parse a string that includes emotional notations like ":)",":p","!","?" also words.
For example,like this string "How dare you! You have lost him two days ago:'(" ,I want to get result like ...
1
vote
1answer
20 views
Can someone tell me where to get a good look into Dot Notation in Javascript
Been searching for about an hour, everything I see on dot notation is pieced out with little explanation, or it's a post of people arguing about that and bracket notation... I just want a site or ...
1
vote
1answer
83 views
Named query on a Mapped Superclass
I'm trying to declare a NamedQuery on a mapped superclass, but I obtain this error:
org.hibernate.hql.ast.QuerySyntaxException: VoipCall is not mapped [select v from VoipCall v where v.audioFile = ...
1
vote
1answer
32 views
How do I overload notation without getting warnings and not using type classes?
First, without knowing much about type classes, it appears that type classes are the best way to overload notation for a type, unless I can't use type classes, or haven't figured out how. I'm not ...
0
votes
1answer
37 views
Looking for C++ formatting, notation, style standards. What do programmers, companies, and business look for in the presentation of code?
Hi guys a very young student here. Few days in learning now, and it is time to start getting the code looking neat, readable and to any and all standards likely already in place that i am unaware of ...
0
votes
1answer
58 views
Codechef: reverse Polish Notation
This is the code for reverse polish notation. When I run it on unix it works fine but codechef says wrong answer. Please help.
#include<stdio.h>
#include<string.h>
void push(char);
void ...
1
vote
0answers
37 views
Mathematica custom notation / disable predefined function?
I cannot find how to use any variable name i want in mathematica.
(I've searched where i could but i cannot think of the correct terms to search for)
For example, I wanted to name one of my variables ...
0
votes
0answers
25 views
Jquery scientific form to expanded number
What I'm currently trying to do is create a web page that would allow a student to practice scientific notation to expanded form. Most of it is complete, what I need next is to create one function ...
1
vote
1answer
60 views
UML Papyrus association notation
I am creating an UML class diagram on Papyrus but I can't understand the notation used for associations.
When an association is set to be navigable, the tool adds a black dot on the tip of the arrow ...
0
votes
3answers
236 views
JSON dot notation to string
I am using JSON within my javascript and I am trying to get a string value for the dot notation representation.
For example AAA.BBB[0].CCC.DDD[5].EEE = 123 in JSON dot notation format.
But I want to ...
0
votes
3answers
50 views
Specific Java Regex For Set Notation
I'm trying to write a regex expression that will check that a string is in the formation of a Set of integers
ex: {1, 23, -501, 52, 2387329, 0}
So far I've got:
Pattern p = ...
3
votes
1answer
321 views
gitlab error cloneing git@localhost:gitolite-admin.git from the installation guide
i try to setup gitlab and follow the installation guide on https://github.com/gitlabhq/gitlabhq/blob/stable/doc/install/installation.md.
My curent problem occurs when doing a smoketest on gitolite, ...
0
votes
1answer
51 views
FP (function programming): notation
The language used here is FP.
I don't understand the difference between the use of <> and [].
For example:
2 : <3,4,5> -> 4
But
+ o [1,2] : <2,3> -> 5
Why is the first ...
2
votes
1answer
101 views
When/where the arrow notation “->” should be used in Objective-C?
I've just got the clear explanation of what "->" notation is about here: Dot (".") operator and arrow ("->") operator use in C vs. Objective-C
But I still don't understand what ...
0
votes
0answers
26 views
making a big graph by composing small shortest closed paths [closed]
I am having following sub graphs and wish to compose all and make a
one bigger graph (say G). After that, I want to select the closed path
where it is passing along the outer vertices of that ...
0
votes
0answers
69 views
Describe a decomposition of an undirected graph into shortest cycles [closed]
Here I am having the below left side graph (say G).
I want to decompose this graph in such a way to get possible all
shortest closed cycles.
I think pictorially this decomposition can be shown ...
-2
votes
1answer
139 views
The big O notation
I am reading about Big O notation. In the book I have, there is an example in which the complexity of n2 is in class of O(n3). That doesn't seem logical to me because n3 depends on n and it isn't just ...
0
votes
1answer
119 views
LIKE-operator in relational algebra
Is there a way to display a sql LIKE-operator in relational algebra?
right now I have done it like this:
σfirstname LIKE ('B%')person
But I'm not sure if this is the right way to go.
...
0
votes
2answers
155 views
Algorithm analysis (big-O) for algorithm
I'm trying to help a friend analyze the complexity of his algorithm but my understanding of Big-O notation is quite limited.
The code goes like this:
int SAMPLES = 2000;
int K_SAMPLES = 5000;
int i ...
2
votes
1answer
153 views
splitting of a graph into cycles and then into paths
First of all, I should say I am not familiar with the Graph theory and also my mathematics knowledge is very poor. Anyhow I am using graph concepts for my analysis.
Basically, I am decomposing an ...
0
votes
1answer
38 views
What do the absolute value bars mean in graph theory?
Just wanted to know, for example in the wikipedia page Dijkstra's algorithm what the absolute value bars meant in O(|E| + |V|log|V|)
0
votes
1answer
49 views
Trouble trying to find the asymptotic runtime of a recurrence
I'm trying to figure out the runtime of an algorithm. It is a sort which works by dividing the problem up into sets of 2/3's (it's the CLR sort). I'm having some trouble coming up with it, this is ...
0
votes
0answers
38 views
Searching different language specifications or handy notations to get acquainted with ANTLR [closed]
With ANTLR one can define his own lexer/parser/tree walker to process some custom formal language.
It's handy when you have to process (read in, translate, check,...) some given data in ...
0
votes
1answer
31 views
Oh-notation above cubic
I have a question about calculating time-complexity in algorithms.
Is it possible to have a notation such as O(n^4) if you have four nested for-loops?
-2
votes
1answer
88 views
The set operation X and set-roster notation? [closed]
Let S = {2,4,6} and T = {1,3,5}. Use the set-roster notation to write each of the following sets, and indicate the number of elements that are in each set?
a. S X T
b. T X S
c. S X S
d. T X T
The ...
5
votes
3answers
147 views
Defining floating point values by base and exponent explicitly
I stumbled upon http://sourceware.org/ml/glibc-cvs/2013-q1/msg00115.html, which includes the line
#define TWO5 0x1.0p5 /* 2^5 */
Apparently, TWO5 is defined as a double with the ...
0
votes
1answer
21 views
Is there a standard way to represent any API?
I want a notation which helps me visualize any API (Application Programming Interface). The best that I have found so far is the Augmented BCNF notation as mentioned in rfc 5234. Is there a standard ...
1
vote
0answers
80 views
emacs minor mode to expand latex
when i take notes, i like to write in "ascii math".
e.g. definition of continuous
all eps > 0, exist del > 0 . |f(x)-f(y)| < eps . |x-y| < del
i would like this to automatically inline ...
2
votes
1answer
190 views
How do I find the theta notation for this block?
The block is:
i=2
while(i<n){
i=i*i;
x=x+1;
}
I need to find the theta notation for how many times x=x+1 executes. I created a table with some sample ...
0
votes
1answer
114 views
Translating mathematical notation into code [closed]
I'm having trouble translating the top part of this equation into code. I'm reading that i'd take the two summations and multiply them together, but I'm not sure whether actually they make up some ...
2
votes
1answer
69 views
Big-O notation for simple validation
I need to derive the big-O notation of this validation program. Its job is to accept product entries of this type: 'jacket,8,12,18,16,6', validates it, sort the sizes, sort the entry into a list by ...
0
votes
1answer
70 views
Large numbers/integers in dot notation
Any handy method to have for instance the number 1000000 become 1.000.000 and 10000 become 10.000 etc? I'm dealing with integers so comma's are not a necessity to include (but would be handy though, ...
0
votes
1answer
177 views
Converting negative milliseconds into human readable format in PHP
Ok, so I have this function:
function convertTime($ms){
$sec = floor($ms/1000);
$ms = $ms % 1000;
$min = floor($sec/60);
$sec = $sec % 60;
$t = $sec;
$hr = floor($min/60);
...
3
votes
2answers
474 views
convert scientific notation to decimal in bash
I would like to convert a number that is stored in scientific notation into a floating point decimal, so I can then perform some comparisons on the data. This is being done in a bash script - here is ...
1
vote
2answers
87 views
How do I read square brackets in Ruby documentation
How do I read this argument list? Is this two values in the argument list or just one? What does the comma inside the bracket mean?
fetch( key [,default] ) -> obj
0
votes
2answers
98 views
What does the notation T(n) mean?
We learned about big O notation, but I often see T(n) as well. For example,
public static Comparable[] mergeSort(Comparable[] A, int low, int high) {
if (low < high) { //at least 2 elements? ...
1
vote
1answer
92 views
Mathematica: simplify function notation
I have some calculations with an arbitrary function. In the output, Mathematica always shows the function arguments. I would like to tidy the notation a bit, by hidding the arguments in the output. ...
-1
votes
2answers
175 views
How to use scientific notation with variable in C++?
I wanna know if it is possible to use the scientific notation with variables?
For example:
int n;
cin >> n;
int x = 1en;
instead of
int x = 1e8
Is it possible? If yes, how?
10
votes
4answers
557 views
Slashes and dots in function names and prototypes?
I'm new to C and looking at Go's source tree I found this:
https://code.google.com/p/go/source/browse/src/pkg/runtime/race.c
void runtime∕race·Read(int32 goid, void *addr, void *pc);
void ...
0
votes
1answer
660 views
What we mean by this xsl notation <xsl:template match=“/|@*|node()”>
I dont understand what we mean by this..
<xsl:template match="/|@*|node()">
<xsl:apply-templates match="@*|node()"/>
</xsl:template>
Please help me out..
<xsl:template ...









