Questions tagged [cell]

A cell is an atomic element within a structure composed of columns and/or rows, such as a table or grid. For questions regarding cell arrays in MATLAB, the tag [cell-array] should be used.

Cell is a basic term that was introduced by spreadsheet programs like Excel, Lotus, etc.. It is also associated with tables in HTML and Word documents.

Cells can contain hard-coded values, computed values based on functions, visualizations based on computed values, or external objects.

For questions regarding cell arrays in MATLAB, the tag should be used.

References

5093 questions
1
vote
1 answer

Excel VBA - Referencing to the cell that the formula is written in

I have this simple problem with a custom VBA code that I am trying to code, yet I could not found any solution and it is about to drive me crazy. I need to have a formula that: Gets the value of the cell two rows up in the same column, if the…
SercioSoydanov
  • 980
  • 10
  • 29
1
vote
1 answer

Android TableLayout cell colspan

For my bachelor thesis I want to implement an android application. For testing purposes, I created a tablelayout. The rows and containing cells are depending on the user input. For getting some experiences with the tablelayout, I created a…
Dominik
  • 101
  • 12
1
vote
2 answers

HBASE CellUtil vs KeyValue

I have a simple question. Should I use CellUtil Class like this: for (Cell cell : result.rawCells()) { byte[] family = CellUtil.cloneFamily(cell); byte[] column = CellUtil.cloneQualifier(cell); byte[] value =…
1
vote
2 answers

How to prevent word break in fixed layout table cell?

I've set a table-layout: fixed; on a table but the words within each cell are being broken onto a new line. Eg: Applicatio n Instead of: Application I did try the solution of adding white-space: nowrap; to no avail as suggested…
Brian Var
  • 6,029
  • 25
  • 114
  • 212
1
vote
1 answer

xlrd & openpyxl fetch wrong cell values (Excel)

Need help, please! Seems like a simple task – I need to fetch values from certain spreadsheet cells and sum them up. But I failed even at the first step - fetching them. At first, I thought smth wrong was with the module (openpyxl is being regularly…
1
vote
2 answers

similar and dissimilar elements in a cell in MATLAB

I have a cell of form: A = {[7];[];[7,7];[3,4,5];[6,7];[7,7];[7,8];[]}; And I want to find a number of similar and dissimilar elements separately in Matlab How can I accomplish this? I mean, that element [3,4,5] is 1 and The type of the element to…
abbas
  • 57
  • 6
1
vote
1 answer

Creating a sequence of grid points in MATLAB

The dimension n is given, we want to grid the space with equidistant points, let say in each dimension we start from -L to +L by a step size 2L/(N+1). Now, we would like the output to be all the n-dimensional vectors giving the nodal points. They…
Saj_Eda
  • 203
  • 1
  • 10
1
vote
1 answer

GWT 2.1 Cell Widgets - continuous scrolling

To me it seems like the new GWT 2.1 table widget (as well as the other ones) is missing a continous scrolling feature (simmilar to smartgwt's "live grid"). Overriding the AbstractPager seems to be a long way to go. Any ideas how to implement it as…
1
vote
1 answer

Using Matlab regexp on a cell array to return specific filenames

I have a folder in which there are many files and I want to create a matrix that holds filenames with a specific pattern. For example: The folder contains files with names starting with a subject number (e.g. 03T1A.xxx.nii, 03T1A.yyy.nii) as well as…
chainhomelow
  • 347
  • 1
  • 12
1
vote
2 answers

How to align text in the box in HTML so that it does not affect the spacing on each side

I am a newbie in HTML and currently working on my University project work and I really need some help. I am using a background box for the "blog-like" website which needs to align title and short text on the left and contents with hyperlinks on the…
Aleksander
  • 13
  • 4
1
vote
0 answers

UICollectionView resizing cells upon frame change

I have a collectionview. I set the cell size based on the collectionview width. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath…
GeneCode
  • 7,545
  • 8
  • 50
  • 85
1
vote
2 answers

Google Script: Clear content of cells with specific background (to slow)

I am new to Google Script and i got stuck. The code below works perfectly, but it takes more than 10 min to loop through all named ranges. It clears the content of cells, but not the one with green backgrounds. function deletNoGreenCells() { var…
Supenk
  • 21
  • 4
1
vote
1 answer

combine rows of multiple arrays of a cell to one new array

There is a cell with five arrays. Each array consits of two rows and 30 columns. Now i want one array with the values in the first rows of the arrays merged. cellC{1,1} = arrayA1 = [1 2 3; 4 5 6] cellC{1,2} = arrayA2 = [11 12 13; 14 15 16] .... I…
mnzna
  • 13
  • 2
1
vote
2 answers

Small UITableView, remove dequeReuseableCell

I've read around so don't knock this as a duplicate unless my searching has been completely awful. Basically I have a small table (5 Fixed rows) however they do have indexes associated with them in a tuple (this is why I'm using the dynamic way…
CardDeath
  • 132
  • 11
1
vote
2 answers

How to get cell value without moving iterator forward - Excel, Java POI

I have problem with iteration over rows and cells in excel using java. I have data structured in sheet in this way: I have to collect all the numbers and pass it to the constructor. I tried sth like this: Iterator iterator =…
pulpet112
  • 43
  • 2
  • 10