Questions tagged [indexed]
151 questions
0
votes
1 answer
Is there a way to detect the selection of an indexed section in a tableview?
I have an indexed table view in which the cells are grouped alphabetically into sections. I would like to be able to only load a block of the data associated with a particular section when that indexed section is selected. In other words, my table…

JeffB6688
- 3,782
- 5
- 38
- 58
0
votes
1 answer
How to index an array?
I have a multi dimensional array, like this:
array('name' => array('title'=>'Title','date'=>'Created'))
I store it as JSON 'array', and when I decode it, I want to reach every item by its number, so I want an indexed array.
How could I solve this…

Gero
- 47
- 4
0
votes
1 answer
Statistical Compression Algorithms of Indexed Images
When we apply statistical compression algorithms such HUFFMAN on indexed images we know that pixels in such images contain index numbers that point to the RGB value in the color lookup table what are we compressed pixels or lookup table or both?

engy
- 141
- 2
- 4
0
votes
2 answers
typo3 indexed search Is it possible to show access-restricted pages in typo3 to non-logged-in users?
i want to show results from access-restricted page to non-logged users also, possible with special class or text showing that if he registers he can get more content.
I found show.forbiddenRecords in typo3 property but its not working...
Im using…

Peter
- 728
- 3
- 16
- 34
0
votes
1 answer
C# - get number of a website indexed page in google?
I wanted to know if there is a way to get number of pages of a website that indexed in Google. with ASP.net , C#
I checked this post, but I didn't get it!
I don't know how to use Google API or even where can I get it!!
Thank You!

Moslem Hadi
- 846
- 5
- 18
- 30
0
votes
1 answer
What is the ideal way to store data in an indexeddb database?
I know how a relational database stores data. I know the basics of indexeddb (up to and including writing a script which plasters over the differences between chrome and ff). I understand the principles behind using an index and that indexeddb…

anonymous
- 1,259
- 2
- 10
- 15
-1
votes
4 answers
How to find maximum value in any range of an array in log(n) time?
E.g. Array: {1, 5, 2, 3, 2, 10}
Range: 0-1 Answer: 5
Range: 2-4 Answer: 3
Range: 0-5 Answer: 10
etc.

Daniel Talamas
- 81
- 1
- 5
-1
votes
1 answer
How to check if more site is indexed in Google
I found one script check index on google if site have indexed
function getPagesIndexedGoogle($site)
{
if ($site) {
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_HEADER => 0,
…

Steven
- 3
- 2
-1
votes
1 answer
Creating two dimensional array from mysql records in php
I have the following code:
while($row12 = mysql_fetch_array($result12)) {
$position = $row12['position'];
$tot[$k] = $row12['total'];
$k++;
}
$arr = arsort($tot);
for($x = 0; $x < $k; $x++) {
echo $tot[$x]."
"; } I have been…
"; } I have been…

Teejaygenius
- 49
- 1
- 1
- 6
-1
votes
1 answer
Want indexed tableview with reference back to source array
In iOS/Swift I've created an indexed "client" UITableView based on the clientName property in my Client class. I created a dictionary with A to Z as the sections. The indexed tableview works great. However, I'm trying to figure out a way to…

Lastmboy
- 1,849
- 3
- 21
- 39
-1
votes
2 answers
Matlab: loading an indexed image
I'd like to read an image in matlab and convert it to an indexed image
Here is my code:
[I map] = imread('image.tif');
I = rgb2ind(I, map);
figure(1);
imagesc(I);axis('equal');
When I just read the image, it looks fine (but it is an rgb image).…

user2738748
- 1,106
- 2
- 19
- 36
-1
votes
1 answer
Only one section in Indexed Table
I want to make an indexed table.
-(void)awakeFromNib
{
self.heroes = [NSArray arrayWithObjects: @"Aaaa",@"Abbbbb",@"Bbbbb",@"Nnnnn",@"Pppp",@"Xxxx",@"Zzzzz", nil];
}
- (NSArray *)sortedArrayFromArray:(NSArray *)array…

Dmitry Chebnev
- 13
- 2
-2
votes
2 answers
Is Putting Quotes on PHP Named Indexes Unnecessary?
Is the following:
$arr = [
foo => 'bar',
bar => 'foo'
];
The same as:
$arr = [
'foo' => 'bar',
'bar' => 'foo'
];
In other words, is putting quotes on named indexes unnecessary? When would be the only times when putting quotes on…

GTS Joe
- 3,612
- 12
- 52
- 94
-2
votes
2 answers
Loop to be used before function call in matlab
function output=Input(data,T)
[x,cmap]=imread('abc.tiff');
data=im2double(x);
ID_notNaN=find(~isnan(SWI));
D=data(:,1);
X=data(:,2);
F=nan(length(data(:,1)),1);
P(ID_notNaN)=SWI;
output=[data(:,1),data(:,2)];
I want to apply the same function on…

Pooja
- 1
-4
votes
1 answer
VB.Net Code is not working getting error
could someone please advice, i am getting compile error for the following vb.net code.
VS highlights few error.
Number of indices is less than the number of dimensions of the indexed array.
Value of type 'Integer()' cannot be converted to…