1
vote
3answers
119 views

Optimized way to handle extremely large number without using external library

Optimized way to handle the value of n^n (1 ≤ n ≤ 10^9) I used long long int but it's not good enough as the value might be (1000^1000) Searched and found the GMP library http://gmplib.org/ and ...
1
vote
2answers
43 views

how to convert longitude and altitude to a grid with equal(nearly) area on the Earth sphere in Matlab or C/C++?

The range of longitude and latitude of Earth sphere are [-180, 180] and [-90, 90] respectively. I want to get equal area grids by 0.5 deg * 0.5 deg (area around the equator). As the distortion ...
0
votes
6answers
72 views

Numerical differential equation solver algorithm segfaults unexpectedly

I was trying to solve a differential equation in octave but it takes forever with the differential unit I have chosen, so I decided to code it in C. Here is the algorithm: #include <stdio.h> ...
1
vote
3answers
75 views

Convert negative angle to positive: Involves invalid operand use

I am attempting to convert a negative angle (in degrees) to positive. But I am getting a compile error saying: test.cpp invalid operands of types 'double' and 'int' to binary 'operator%' ...
1
vote
1answer
53 views

Using math.h sqrt function in C [duplicate]

Reading the documentation for math.h, it seems like all I should have to do is include math.h, and use the math functions included, such as sqrt. The problem is I get the following error when trying ...
-10
votes
3answers
113 views

Calculate the sum of numbers between 1 and 100 that end in 5 [closed]

I'm trying to calculate the sum of all the numbers between 1 and 100, but only those numbers that end in 5: 5, 15, 25, and so on. I have no idea how to do this; I know how to calculate a sum, but not ...
1
vote
3answers
79 views

Math library seems not to be found by gcc [duplicate]

I'm trying to execute a very simple code in C : #include <stdio.h> #include <stdlib.h> #include <math.h> #ifndef M_PI #define M_PI 3.14 #endif double cosrad (double n) { ...
0
votes
0answers
32 views

Examples for running the ziggurat method

In their seminal paper "The Ziggurat Method for Generating Random Variables", Marsaglia and Tsang implement their algorithm in C with inline definitions in this script. I'm interested in using the ...
4
votes
3answers
81 views

Folding multiple (discrete) operations into one (continuous) operation

For a simple example, suppose we're checking whether a char c is alphanumeric: if (48 <= c && c <= 57 || 65 <= c && c <= 90 || 97 <= c && c <= 122) { ...
1
vote
2answers
75 views

When using a header only in C/C++?

is it usual to use for a class like "vec3" only a header? This is my actual code: #ifndef VECTOR3_H #define VECTOR3_H #include <math.h> class vec3 { public: double x, y, z; vec3(); ...
-1
votes
0answers
43 views

Math function to approach min and max values [closed]

I hope this is possible... I'm looking for help with a function which would translate an input value to within a minimum and maximum range. But rather than stop at the min and max, I'd like the ...
2
votes
6answers
130 views

Little endian or Big endian

#include <stdio.h> union Endian { int i; char c[sizeof(int)]; }; int main(int argc, char *argv[]) { union Endian e; e.i = 1; printf("%d \n",&e.i); ...
0
votes
2answers
116 views

Measuration By Division [closed]

The function is y=x^2+2x+1 and the domain is from 0 to 10. If you enter the number of intervals, your program prints the result. Complete the function, MeasurationByDivision(). I made below C code, ...
0
votes
2answers
69 views

Different bettwen % operator of C language and mod of google calculator

I calc -15 mod 18 and here are results: C: -15 % 18 = -15 (http://codepad.org/DhzkZYHk) Google: -15 mod 18 = 3 (Type -15 mod 18 into google's search box) and results of -9 mod 5: C: -9 % 5 = -4 ...
0
votes
1answer
85 views

Reposition rectangle after zooming

I have a rectangle defined by R1:x1,y1-x2,y2 and after applying zoom, I get the rectangle R2:X1,Y1-X2,Y2. +--------------+---+ | | | | R1 | | | | | ...
-2
votes
1answer
51 views

O(1) code to count multiples of a number in a range?

How do I do this in constant time (I do not want to brute for iterate from a to b)? // return number of multiples of c in [a,b] long count_multiples(int a, int b, int c) { assert(b >= a ...
0
votes
1answer
57 views

I'm using math.h and the library link -lm, but “undefined reference to `pow'” still happening

I'm using math.h and the -lm option to compule. I tried: gcc -o ssf ssf_tb.c ssf.c -lm gcc -o ssf ssf_tb.c -lm ssf.c and gcc -o -lm ssf -lm ssf_tb.c ssf.c, but the error: undefined reference to 'pow' ...
-1
votes
1answer
82 views

Adjusting glRotate, using dot product

Introducing: I'm developing a little Tower defense game in opengl, currently I'm just despairing of a little problem.... I want the projectiles from the tower to aim with the head facing the unit. So ...
-2
votes
0answers
39 views

Benchmarking algorithm that will benefit from running on GPU

I would like to try and experiment a little with parallel programming on OS X, diving into Grand Central Dispatch and OpenCL, just to play around and gain some knowledge of it all. But I need some ...
2
votes
1answer
93 views

Velocity based on time rather than FPS

I'm making a simple application with an object that I apply gravity on.. I don't want the object to go too fast / too slow when the fps rate changes, so I looked around for a way to do this and what ...
0
votes
1answer
57 views

FFT unable to recombine results? [closed]

so basically I have a function that calculates the complex discrete Fourier series of a given vector of size N. (So I have been provided with the vector y and I have to find x) The code uses ...
0
votes
1answer
45 views

Evenly space multiple circles rotating around a point

i've seen some questions about this but none of the solutions provided can work for me. Basically, I'm making a program that can animate 2nd representations of atoms. Say I need to rotate 8 small ...
7
votes
1answer
285 views

What is 1LL or 2LL in C and C++?

I was looking at some of the solutions in Google Code Jam and some people used this things that I had never seen before. For example, 2LL*r+1LL What does 2LL and 1LL mean? Their includes look like ...
1
vote
1answer
119 views

Modulus of Product of two integers

I have to find c, c = (a*b) mod m a,b,c,m are 32-bit integers. But (a*b) can be more than 32 bits. I am trying to figure out a way to compute c, without using long or any data type > 32 bit. Any ...
1
vote
0answers
132 views

Scalar angle between two quaternions [closed]

Is it possible to calculate the difference between two quaternions and represent it as a scalar? I want to provide an API which can be used to set a minimum threshold angle in degrees (or Radians). ...
0
votes
0answers
66 views

reading file into struct arrays [closed]

The program follows the flow: Information is read into from a externally generated file. Information is parsed, using a buffer and fgets. Information is stored into an array belonging to a structure ...
-1
votes
3answers
120 views

Program to output long multiplication in C [closed]

Can someone please show how to write a program in C that outputs all solutions for the following multiplication (replace stars with digits): **** x *** ------- ***** ***** **** ------- ...
1
vote
4answers
132 views

Represent 16 bit signed int as a value between 0-100

I am relatively new to programming and have always been terrible with math. I have a program that takes a 16 bit signed INT -32,768 +32,768 I would like to represent these values as 1-100 on the ...
0
votes
6answers
91 views

Efficient computation of greatest power of 2 < x [duplicate]

I have a requirement to compute the greatest power of 2 which is < an integer value, x currently I am using: #define log2(x) log(x)/log(2) #define round(x) (int)(x+0.5) x = ...
-2
votes
2answers
100 views

Finding fractions with conditions in C [closed]

I am trying to write a short program in C that finds all fractions in the form of n/d, where: n and d are positive integers with no occurrence of zero n/d is always equal to 0.5 every nonzero digit ...
1
vote
3answers
138 views

Finding a brute force algorithm for the following cryptarithm / alphametic puzzle

I'm trying to write a program in C that will solve the following cryptarithm: one + one = two seven is prime nine is a perfect square Namely, I need to find the numerical values for ...
7
votes
6answers
184 views

In-place interleaving of the two halves of a string

Given a string of even size, say: abcdef123456 How would I interleave the two halves, such that the same string would become this: a1b2c3d4e5f6 I tried attempting to develop an algorithm, but ...
5
votes
1answer
123 views

Using recurrence relations to prove a function has exponential runtime?

Here is a simple C program: int f(int n) { if(n==0 || n==1) { return n; } else { return 2 * f(n - 1) + 3 * f(n - 2); } } This program has exponential time complexity. You can see ...
-1
votes
3answers
137 views

Basic C Program, Babylonian Algorithm

I'm new to the C language and am trying to do a lab tutorial that we were given at uni. We've been asked to do the following: Task 1. The Babylonian algorithm to compute the square root of a number ...
-1
votes
2answers
73 views

calling array in function [closed]

I am new to C , and i am working on a program in C to evaluate RHS of green's theorem Those who don't know about green's theorem here is LINK from wikipedia. Now concerning the Right hand side ...
2
votes
4answers
130 views

bitwise division rounding to nearest zero

I want to perform an signed integer bitwise division by a power of 2. However, I encounter several problem. I just wonder if anyone can help me. First, I try to use bit shifting alone: int result = ...
-1
votes
1answer
108 views

how to find boundary points of closed curve [closed]

I am new to c, my question is: how do we find boundary points of closed curve by C programming ? example in the curve x*x+y*y=1 we know that x and y are varying from -1 to 1. How to accomplice ...
0
votes
3answers
52 views

efficient alternative to fmod(x,2)

is there a more efficient way to perform: f = fmod(x+1, 2) to ascertain whether a value is even? e.g. f = 1 for all even values of x f = 0 for all odd values of x I only need this to work for ...
1
vote
6answers
163 views

Finding solution set of a Linear equation?

I need to find all possible solutions for this equation: x+2y = N, x<100000 and y<100000. given N=10, say. I'm doing it like this in python: for x in range(1,100000): for y in ...
0
votes
3answers
172 views

need clarification on BODMAS rule [closed]

In BODMAS rule the order of operations are brackets,order,division,multiplication addition and subtraction.here division,multiplication,addition and subtraction is following decrement,increment ...
2
votes
4answers
219 views

Collision between circle shape and rectangle [duplicate]

I want to detect Collision between circle shape and rectangle shape, but dont know how. I know how to detect Collision between circle to circle using pythagorean theorem which is: (x2 - x1)^2 + (y2 ...
1
vote
0answers
88 views

Basic calculator with expressions and other mathematical operations [closed]

I'm supposed to create a basic calculator that will be able to do the following operations add, subtract, multiply, divide, mod, and other. For the "other" option, I need to solve an expression such ...
1
vote
1answer
44 views

Symetrical positions in matrix

Given an (i,j) element in a matrix what is the symmetrical correspondent in the matrix. I am trying to create a function that generates a symmetrical matrix in c. Thanks a lot. Also would it be wise ...
5
votes
3answers
113 views

Will GCC leave arithmetic with fixed values for run-time or compile the output?

I am wondering if GCC will leave arithmetic with fixed values to be executed at run-time or if it will set it to it's answer, eg. const float halfPi = M_PI/2; Will it "boil down" the equation and ...
2
votes
2answers
98 views

spliting 64 bit value to fit in argument type of double

I have a function for which i cannot change the syntax, say this is some library function that i am calling: void schedule(double _val); void caller() { uint64_t value = 0xFFFFFFFFFFFFFFF; ...
5
votes
3answers
190 views

How can i find the number of lowest possible square that can fit in the given square

let's suppose i have a square of 7x7.i can fill the square with other squares(i.e the squares of dimension 1x1,2x2.....6x6).How can i can fill the square with least possible smaller squares.please ...
0
votes
2answers
171 views

Program a mathematical using recursive function

I want to program the mathematical function f(x)=sqrt(1^1+sqrt(2^2+sqrt(3^3)+...+sqrt(x^x))), where x should be 1 <= x <= 10. I tried to programm the function like this: double f1Rek(int x) { ...
0
votes
2answers
132 views

Solve a transcendental equation in C

I need solve this transcendental equation in C: x = 2.0 - 0.5sen(x) I tried this: double x, newx, delta; x = 2.0 - 0.5; newx = sin(x); delta = fabs(newx * x); printf("%f", delta); This is ...
0
votes
1answer
38 views

Deleting identical rows in matrix [closed]

Can someone help me out with this problem? What is the fastest way to delete identical rows in matrix. E.g. if there are 3 identical rows, 2 will be deleted. e.g. 0 1 0 0 1 0 0 1 0 ...
0
votes
3answers
94 views

Incrementing values in array backwards

I want go through all combinations of values in array by incrementing it backwards. So let's have an array int array[10] = {0,0,0,0,0,0,0,0,0,0}; I want to increment it this way: ...

1 2 3 4 5 13