No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
12 Posted Topics
# Heading Here # Trying to add a webcam fee to a panel inside of my wxpython GUI. I have buttons on the left currently, and a black panel on the right. I'm confused as to how to add a webcam feed to that panel? here is the code being … | |
Need some help computing the geometric mean of an array this is what I have so far... i'm not really sure why i'm suppose to use pow [CODE]include math.h include int geomean(int *myarray, int count) { double geo = 0; double count = (double)count; for(int k=0; k < count; k++) … | |
working on a 32bit architecture and i'm adding two arrays together slot by slot into a third array so if I have 3,4,4 and 4,4,4 in the arrays the third array should contain 7,8,8 at the end of the function I was able to pass in the arrays correctly and … | |
trying to divide a float value that is in my FPU stack by a integer value that is stored in a register this is the code i tried first i'm positive that fstp is putting the value on the stack, because it's outputting it correctly any ideas? or should i … | |
Working on this code to sum up real numbers from an array, it's 32bit architecture so i'm using ecx and edx to hold the upper and lower values of the floating point number as of right now the code will output the last real number from my array, and not … | |
I have an array of real numbers in 32-bit architecture it holds he higher and lower order values in ecx, edx i'm able to enter them in into the array and output them as well but i'm having difficulty adding all them up here is code so far(gives a segfault) … | |
Re: i've never worked with the single registers but maybe using like ebx, and eax would work for addition i.e. mov eax, prompt ;enter value call print_string call read_int add ebx, eax ; move value entered into ebx as an accumulator ofcourse you'd have to zero out ebx before hand and … | |
working on inputing floating point values into an array, then adding them up and getting a sum so far i have this code for it, but my flag that checks to see if an input is 0 to exit the loop for entering floats, keeps on going(endless loop) [CODE] %include … | |
Hello, So i'm new to C#, but I know c++ well. I'm having problems inputting data into a two dimensional array Here is how I initialized the array [CODE] int[,] temps = new int [12, 2];[/CODE] And I attempted to write the input function and i have this so far.... … | |
As title says Just trying to read in values and store them in an array Then call print function to print them out As of now the program works, but only prints out the last value entered and the other outputs are 0's here is the code... %include "asm_io.asm" segment … | |
I wrote this code to get a standard deviation from inputs that are stored in an array. I outputted all of my inputs and they are correct, and it's subtracting the mean correctly, hoever when i hit the check flag(if counter is equal to zero) i get a floating point … | |
Hello all, First time user on this web forum, I'm having problems with this function I'm building So I need to read in all the data for one movie from a text file that contains several movies text file looks like this 7 8.9 1993 281646 D 195 Schindler's List … |
The End.