Top "Size" questions

Size in computing can refer to various dimensions: size in bits, in bytes, in pixels, in memory, in disk space, etc.

Determine the size of an InputStream

My current situation is: I have to read a file and put the contents into InputStream. Afterwards I need to …

java arrays size inputstream
PHPExcel auto size column width

I'm trying to auto size the columns of my sheet. I'm writing the file and in the end I try …

php resize size phpexcel
Image size (Python, OpenCV)

I would like to get the Image size in python,as I do it with c++. int w = src->…

python opencv size
Set element width or height in Standards Mode

Is it possible to set width or height of HTML element (ex. <div>) in JavaScript in Standards Mode? …

javascript size standards element quirks-mode
How to Get True Size of MySQL Database?

I would like to know how much space does my MySQL database use, in order to select a web host. …

mysql database size byte storage
Array[n] vs Array[10] - Initializing array with variable vs real number

I am having the following issue with my code: int n = 10; double tenorData[n] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; Returns the following error: error: variable-sized …

c++ arrays initialization size
change array size

Is it possible to change an array size after declaration? If not, is there any alternative to arrays? I do …

c# arrays size
How Big can a Python List Get?

In Python, how big can a list get? I need a list of about 12000 elements. Will I still be able …

python list size
size of NumPy array

Is there an equivalent to the MATLAB size() command in Numpy? In MATLAB, >>> a = zeros(2,5) 0 0 0 0 0 0 0 0 0 0 >>&…

python arrays matlab numpy size
std::string length() and size() member functions

I was reading the answers for this question and found that there is actually a method called length() for std::…

c++ string stl size