Tagged Questions
The cells tag has no wiki summary.
5
votes
1answer
289 views
MATLAB: Is it possible to overload operators on native constructs (cells, structs, etc)?
I'm using cells to manage data in some stuff I'm working on. I'd like to be able to do things like:
A = cellfun( @(X)( randn( 5,5 ) ), cell( 5,1 ), 'UniformOutput', 0 );
B = cellfun( @(X)( randn( ...
4
votes
2answers
1k views
how to compare matlab cells or structs
is there a simple comparison function for matlab cell or struct objects?
using '==' doesn't seem to work :(
4
votes
4answers
260 views
How to create a cell array of k similar objects in Matlab?
I want to create an 1,k cell of m,m matrices. I have some trouble trying to initialize it. My first idea was to do this
myCell = cell{1,K};
for k = 1:K
myCell{1,k} = eye(m);
end
But it seems ...
4
votes
1answer
750 views
Merging cells in a JXTreeTable
I want to merge two cells in a JXTreeTable. Is this possible? I have read the solution for Merging cells in JTable, but this does not work for JXTreeTables.
What I mean with merging cells: I want to ...
3
votes
1answer
83 views
Highlight cells in heatmap
I am currently trying to set up a heatmap of a matrix and highlight specific cells, based on two other matrices.
An example:
> SOI
NAP_G021 NAP_G033 NAP_G039 NAP_G120 NAP_G122
2315101 ...
3
votes
3answers
136 views
How to merge cells in php generated table?
I found the solution on this site for displaying a blank cell when the xml array is repeated, but I can't seem to find an answer to merging the blank cells.
This is what I'm getting.
And this is what ...
3
votes
1answer
62 views
Doing double cell reference in Excel 2007
I am writing a sheet to display a specific students' results on a test. In a seperate sheet I have all the results of all the students and want to make some graphics for just this one student, which ...
3
votes
1answer
295 views
Run a specified command on error without try/catch in Matlab
I have a Matlab script consisting of several cells that should all be able to execute independently (i.e. I might need to execute one cell in order to execute another, but until I clear the workspace ...
3
votes
3answers
103 views
How can I reuse components and widgets in other Rails apps? Is that a good idea?
I have built mini widgets that consist of a model, a controller a couple of stylesheets and a couple of lines of javascript. Whenever it turns out that I need something like that in the next app I am ...
2
votes
1answer
46 views
How to force zero pixel Gap between Consecutive Cells in WPF DataGrid
i am building an application in WPF for a custom need. First i opted for custom controls, but later on figured out that much of what i needed was already implemented in Datagrid Control. However there ...
2
votes
2answers
143 views
Individual and not continuous JTable's cell selection
Is there any clean way to allow a user to select multiple non continuos cells of a JTable?
Or I'm forced to implement my own ListSelectionModel?
I played around with setCellSelectionEnabled() and ...
2
votes
1answer
91 views
How to access 'can?' method from within cell?
I'm using cancan and cells gems in my ruby-on-rails project.
How to access can? method from within cell?
Thanks.
2
votes
1answer
819 views
When printing page table rows/cells gets splitted on page break
I have an table with nested tables in. When I am printing this page, the cells gets splitted on page break.
Is there any chance that I can control that it should jump onto the next page instead of ...
2
votes
1answer
65 views
In matlab, how do I apply a function of two arguments to two cellarrays of equal length?
So I have two cell arrays:
A = {2 2 2 2}
B = {[1 2] [3 2] [5 5] [7 7]}
and a function of two arguments:
F = @(a, b) [a * b(1), (b(2) / 3), (b(1) + a) * 22]
And I want to apply the function to ...
2
votes
2answers
1k views
Problem dequeueReusableCellWithIdentifier, custom cell
i have custom cell with 2 buttons(the function of these buttons is just to disable the button that was pressed).
When i use dequeueReusableCellWithIdentifier in this classic way:
- (UITableViewCell ...
2
votes
1answer
393 views
Identifying uniques in a cell array
I have a 45x2 cell in MATLAB, with the first column an arbitrarily sized matrix of doubles.
Some of these matrices are repeated, whilst others aren't. I'm attempting to strip out only the unique ...
2
votes
2answers
812 views
How to change default stop edit behavior in jtable
When you edit a cell in an jtable the value is made permanent only if the focus is changed or if one hits enter (for example if you change the cell value from "abc" to "xyz" and close the window the ...
2
votes
3answers
17k views
Silverlight Datagrid: Changing cell styles, based on values
I have some data. I want to go through that data and change cells (for example - Background color), if that data meets a certain condition. Somehow, I've not been able to figure it out how to do this ...
1
vote
2answers
33 views
VBA Excel R1C1Formulas using cells method
I've run accross this problem many times and still haven't found the solution or why this won't work. I want to use cells method to enter a formula through a column and so I write this:(just an ...
1
vote
1answer
767 views
dequeueReusableCellWithIdentifier behavior changed for prototype cells?
In iOS5, using ARC and prototype cells for tableView on storyboard, can I replace the code below:
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView
...
1
vote
1answer
115 views
C# Accessing EXCEL, formating cell as General
C#, Visual studio 2010
When manipulating excel cells in C# (via an COM object), should I use the .Value or .Value2 ?
that is
sheet.Cells[row + n, col].Value = "Hello world"
or
sheet.Cells[row + ...
1
vote
0answers
1k views
Storyboard and CustomCells
I'm new to Objective-C and trying to create custom cells. In the storyboard (under Xcode 4.2) i am pushing a TableViewController. In this Controller i am Displaying some simple Cells, but now i want ...
1
vote
0answers
43 views
Selecting the contents of individual cells of a WPF DataGrid
How can I access the values displayed in individual cells of a WPF DataGrid?
I have a DataGrid that I fill in with a LINQ query like this:
var result = from obj1 in context.Samples
...
1
vote
1answer
605 views
Disable Excel's Automatic Cell Reference Change After Copy/Paste
I've got a massive Excel 2003 spreadsheet I'm working on. There are a lot of very large formulas with a lot of cell references. Here's a simple example.
...
1
vote
3answers
183 views
How do I get the value of a gridview Cell?
How can i get the value of a gridview cell? I have been trying the code below with no luck.
protected void grvExpirations_RowDataBound(object sender, GridViewRowEventArgs e)
{
...
1
vote
1answer
336 views
Performing Delete operation in GridView control in ASP.NET when a Edit Operation takes place at the same time
Currently I am using the which is the standard way to perform Editing in a GridView control. But this allows me to perform only one operation at a time.In my application when one value of one field ...
1
vote
1answer
159 views
Rookie Obj-C problem - UITableViewCell selected displays no data in UIView sub view
I have UITableViewCell which, when clicked displays a UIView loaded from a .xib file. When I click the cell the view is successfully displayed however the data I want to display in the view elements ...
1
vote
1answer
135 views
setting width for different cells in a column
I'm making a simple website, but is there a way to keep the width of different columns separate? What would I need to switch around or change?
<table>
<tr><td width="50%">Site ...
1
vote
0answers
91 views
How can I access cancan helpers from within cells
Hey! How can I use the cancan helpers like can? and cannot? from within cells views?
1
vote
2answers
156 views
Vertices of Six Sided Polygons from Planar Points Coordinates?
Is there a way to draw six-sided polygons from a list of random planar points' coordinates or index, the points being the polygons' vertices ?
Many thanks,
Arthur
1
vote
3answers
141 views
What kind of traction does cells have in the Rails community?
I am commencing a Rails build and have been looking at Cells - seems like a powerful piece of kit. What kind of real traction does cells have in the community at large and is it worth implementing for ...
1
vote
1answer
343 views
Missing template with a certain locale; rails and cells
During Testing my rails app with cucumber I get the following error in the step "And I am on the cases page" only on a MacBook with english locale. On Computers with german locale there is no problem. ...
1
vote
1answer
27 views
making a seperate table, based off a previous table, ommiting non value numbers
I am having trouble getting the right formula for what I am trying to do.
basically, I need to enter data into a table to submit to accounting. I take data from one table and put it into another ...
1
vote
1answer
148 views
F# closure: Map reference cell is always empty
Given the following code:
static member private getIntValue (_map:Map<string, int>) (_key:string) =
if (_map.ContainsKey _key) then
_map.[_key], _map
else
let i = ...
1
vote
2answers
3k views
How to add yes/no combo box to the each cells in one column in Excel 2010
See title. How can I do this in Excel 2010?
1
vote
1answer
711 views
dynamically insert new rows in the table (JavaScript)?
<script type="text/javascript" language="javascript">
function addNewRow()
{
var table = document.getElementById("table1");
var tr = table.insertRow();
var td = tr.insertCell();
...
1
vote
3answers
99 views
Simple Excel function that splits a numbered entered into one cell randomy and evenly over 3 others
I am looking for a simple function that will take a number entered into a single cell say 20 and divide it evenly and randomly over three other cells, none of the values can be 0.
ie. A1 = 20
then
...
1
vote
1answer
3k views
Working with XLSWRITE in MATLAB: How do I delete empty cells?
I am generating an Excel file through MATLAB and I have empty cells in the middle of it. Here is the code I am using to initialize an empty matrix:
newfile = cell(5,5);
[newfile{:}] = deal('');
...
1
vote
1answer
542 views
Table with editable cells in android
I need table with editable cells for my android app. Something like QTableWidget in QT. So what widget should I use?
1
vote
3answers
187 views
App view feels like it's “LAGGING”
Most of the views in my app are UITableVlews inside a UIViewController. My App feels like it's lagging when trying to scroll through the tables. I was wondering (1.) if it is better to create the cell ...
1
vote
1answer
779 views
Add SemiColon to each value (each line) in a cell
i have the following values in a single cell let be A1
1234
567
454
Likewise all the A(N) are filled with values. N various from 1000 to 1500
i want this to get converted as
1234;567;454
Any ...
1
vote
2answers
976 views
cell editing in JTable
Im doin a project using JTable, i want to make my table cells editable. I used,
public boolean isCellEditable(int row, int column)
{
return true;
}
My problem is, the cells are ediable but ...
1
vote
1answer
2k views
Dynamic merging of cells in SSRS
In an SSRS Report ,I have a table which has 14 columns, 1st column is 7am and the last column is 7pm.
I have 100 records with conference names and the timings,
ex: 1) interenational conference 9am to ...
0
votes
1answer
11 views
Findin matching cells in Excel and get the values then put them into another cell
Please help me on this.
i have for example in excel
column A column B column C column D
what i want to do is that when i write something in column C i want excel to check if it exists in ...
0
votes
1answer
29 views
Two CellValues with Different Styles in a cell in OPEN XML SDK 2.0
Im tasked to use OPEN XML SDK 2.0 and had encountered this problem. Is it possible to have different styles for a single CellValue inside a cell something like the picture below:
A: The plain text
...
0
votes
0answers
30 views
Calculating grand total from multiple tables using JQuery
I have four dynamically generated tables, and each has a cell where I calculate the sum of cells in that column - like this:
<td id="sum1"></td>
<td id="sum2"></td>
...
0
votes
0answers
26 views
IBAction for (possible) infinite number of cells in UITableView
is it possible to create a IBAction (or something similar) for a (any number of) in UITableView that can add new cells when the user adds them.
The code to create a new cell with all details work ...
0
votes
1answer
24 views
PHP - Outputting to Excel, how do I define different columns
I am outputting data from my DB to Excel (has to be .xls format), but how do I tell Excel to put the data in to a new cell or to start a new line?
Thanks.
/** Set the headers */
...
0
votes
6answers
44 views
Calculation of database cells values
I have a database with a table, containing two integer fields.
When I try to get a percentage (fieldA / (fieldA+fieldB)), the value is 0.
double percentage = fieldA+fieldB // WORKS; 5+5=10
double ...
0
votes
2answers
31 views
Count unique cells in a column or row of an HTML table with javascript/jquery
Is there a simple way to count the unique cells in a column (or row) in an HTML table with jQuery or plain javascript?
Example: (table with only one column)
melon
banana
melon
strawberry
The ...