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.

learn more… | top users | synonyms

-4
votes
0answers
8 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
0answers
4 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 ...
5
votes
1answer
45 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
59 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
52 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
29 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
31 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
46 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
32 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
18 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
44 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
127 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
45 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
255 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
92 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
23 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
58 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
124 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
98 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
130 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
139 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
28 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
46 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
36 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
70 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
135 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
77 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
170 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
109 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
66 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
66 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
161 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
379 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
84 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
85 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
85 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
152 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
526 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
323 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 ...
3
votes
5answers
116 views

Notation in Perl - what does the ||= operator do?

I happen to meet a perl code with the following syntax. sub new{ my ($class, $value)=@_; $lobby ||= bless{ e=>undef;},$class } what does the syntax ||= mean? I failed to google it as a key ...
0
votes
1answer
64 views

I can't seem to figure out how to properly pass parameters with pure pointer notation

I'm trying to modify a previous program I wrote using pure pointer notation. It's a program that generates a random string of 40 uppercase letter, takes input of up to 20 uppercase letter, and input ...
0
votes
1answer
279 views

Can't get user input using getchar() and pointer notation in C

I'm changing a program from normal array notation to pure pointer notation and I can't receive user input using getchar() in a while loop. I printed out was the program was receiving and it output ...
1
vote
2answers
184 views

Can someone give me an example of “pure pointer notation” to an array in C?

I'm looking for an example of 'pure pointer notation' in C. I have an assignment to convert a program to pure pointer notation and it uses a lot of arrays. Also, can you give an example of what would ...
5
votes
1answer
272 views

Why does Big-O Notation use O(1) instead of O(k)?

If I understand Big-O notation correctly, k should be a constant time for the efficiency of an algorithm. Why would a constant time be considered O(1) rather than O(k), considering it takes a ...
14
votes
2answers
362 views

What does `m_` variable prefix means?

I often see m_ prefix used for variables (m_World,m_Sprites,...) in tutorials, examples and other code mainly related to game development. Why do people add prefix m_ to variables?
1
vote
3answers
137 views

Notation for a recursive call on user defined type [duplicate]

Possible Duplicate: Iterating through a String and replacing single chars with substrings in haskell I'm trying to implement a function that looks at a String ([Chars]) and checks for every ...

1 2 3 4 5