The subscript tag has no wiki summary.
1
vote
1answer
26 views
How to add subscript and superscript text in kinetic text
I am using kinetic.js to create a text object in a canvas.
Now I need to create a text object with subscript and superscript
e.g: H2O (here '2' will be subscript) and I am not able to create a ...
2
votes
2answers
30 views
Create list with depth equal 2
I have a list with a depth equal 2. I would like to subscript that list as described in the following example:
my.list<-list(
a=list(
a1=1:10,
a2=11:20),
b=list(
b1=21:30,
...
0
votes
1answer
41 views
R summation of a serie with subscript
I thought it should be an easy one but I have been scratching my head and couldn't find the correct way.
I would like to calculate a summation of series A:
A<-*summation((i=2 to ...
0
votes
0answers
33 views
Android String Resource Superscript
I have a string resource file, which I want to pull strings from and I want one of the strings to have some superscript in it.
From ...
-2
votes
1answer
79 views
C++ project VERY occasionally crashes
I have a C++ project. It has an occasional bug, where it crashes on exiting.
The in-house game engine calls the game_end() (a function in my game app), which is just like a normal destructor (deletes ...
0
votes
1answer
23 views
What is the definition of a Subscript in a Java array?
It is on a test review and there is no definition in the book.
1
vote
1answer
54 views
VB - Subscript out of range, error 9
**I am new to VB and I received and error 9, subscript out of range. The error indicated it was in the below procedure. Please let me know what might be the issue. I appreciate your assistance
...
1
vote
1answer
66 views
Subscripting a string in Javascript
I have a data in the object section_data.title and i am trying to use str.sup() where str=section_data.title; and str holds following data:
str="Not less than 30 net ft2 (2.8 net m2) per patient ...
0
votes
1answer
64 views
Superscript and Subscript in Android App XML
I am parcing data from an XML file which has subscript and superscript characters in them which i got from the character map. Like so:
<value column="Back" null="false">H₂</value>
but ...
0
votes
2answers
44 views
Is there a way to print an AttributedString in a JLabel?
I have an AttributedString with regular text and some subscripts. I would like to put the text in a JLabel without losing formatting.
Is this possible? And if not, what would be the best ...
9
votes
1answer
195 views
Producing subscripts in R markdown
I'm aware that R markdown can produce superscripts:
text^superscript
But it possible to produce proper subscripts? Or is the only way to do so to cheat and use LaTeX math mode:
...
0
votes
2answers
105 views
Run-time error '9': Subscript out of range when creating matrix
I'm trying to create a varcov matrix using VBA but despite hours of trying to track down the answer to this problem have been unable to solve it. My problem is that I keep getting the run-time error ...
3
votes
2answers
66 views
How to include subscript in text for plot point labels
Hi I'm new to R so I apologise if this is a very basic question.
I'm trying to add text to a plot at point 11 on the x axis and point 900 on the y axis that will read t0= -4.0280 with the 0 as ...
1
vote
0answers
109 views
R Error: subscript out of bounds with by() nested with kappam.fleiss()
I have a dataframe in which I want to compute interrater agreement (Fleiss Kappa) for multiple raters on multiple levels of my factor, "form." When I run my code, I get the following error:
...
0
votes
1answer
122 views
How to fix this buggy code (roulette wheel selection)?
I am implementing genetical algorithm to minimize some function of 20 variables.
Each individual is stored as a vector. scores are stored as doubles.
double sum = 0;
double sum = sumOfScores();
...
0
votes
1answer
71 views
Subscript of vector is sometimes out of range
I have a genetic algorithm program, everything is allocated dynamically using vectors. Nowhere is the number of generations or individuals per generation set at compile time.
I tried it using 500, ...
0
votes
2answers
47 views
Unable to display subscript text in textView
I'm quite new to Android and I'm trying to display some chemical formulas in a textView which is contained in a customListView.
I'm fetching all datas from xml parsing, then I wish to display the ...
0
votes
2answers
113 views
C++ vector ERROR: subscript out of range
Im a C++ noob, currently tring to create a text based maze game for degree. I im replacing my currently working array with a vector (for dynamic size) and reading a txt file of chars to it.
PROBLEM: ...
1
vote
4answers
85 views
c++ two versions of overloading subscript operator
My question is about the difference between:
const T& operator[](const int nIndex) const;
and:
T& operator[](const int nIndex);
Why would I need both of them defined in a class, what's ...
0
votes
1answer
53 views
How to remove extra space after subscript 2 in Internet Explorer
I am building a website that uses a subscript 2 a lot, as in H₂O. The ₂ is created with the HTML code ₂ rather than the tag.
Here's the problem, in Internet Explorer there is a large space ...
0
votes
1answer
156 views
Invalid types 'int[int]' for array subscript error
I'm migrating into C++ from Java world and am trying to port over an example. I'm getting an error in that I'm not accessing my arrays correctly. I tried pointing to them, using -> and * notation but ...
0
votes
0answers
28 views
Subscript requires size of interface nsmutablearray which is not constant
Code
`NSMutableArray *locArray = [voucher vendorAnnotationList];
VendorAnnotation *loc;
double distance;
if(locArray.count==1){
loc = locArray[0];
...
6
votes
2answers
93 views
Char array subscript warning
when I use char array subscript as in this example:
int main(){
char pos=0;
int array[100]={};
for(pos=0;pos<100;pos++)
printf("%i\n", array[pos]);
return 0;
}
I am ...
0
votes
2answers
38 views
Place subscripts in a QString
I'm having a difficult time finding how to insert subscripts into a QString. I know it can be done with style sheets, but I can't really use a style sheet in places where I place a QString. I've ...
1
vote
1answer
161 views
Wolfram Mathematica solving a particular equation
I'm using Wolfram Mathematica 8 and I want to make it solve this equation for the variable t:
It probably involves using variables with longer names and having subscripts
0
votes
1answer
125 views
import excel file with subscript character
Uploading Excel file is ok and not an issue
gone through many articles on uloading excel to mysql
Tried
http://phpexcel.codeplex.com/
http://sourceforge.net/projects/phpexcelreader/
...
0
votes
0answers
93 views
iOS UIButton label cuts off subscript
When I add a Unicode subscript character to my UIButton titleLabel, the bottom half of the character is cut off. I try to extend the frame, but it doesn't appear to do anything.
[[btn titleLabel] ...
0
votes
3answers
168 views
C method for iterating through a struct's members like an array?
Let's say I have a vector class:
typedef struct vec3_s
{
float x, y, z;
}
vec3;
But, I would like to be able to iterate through it without converting it to an array of floats. While a cast is ...
2
votes
2answers
320 views
Error in `*tmp*`[[k]] : subscript out of bounds in R
I wanted to ask why I get this error while initializing a list of for example vectors or some other type and how can I fix it?
> l <- list()
> l[[1]][1] <- 1
Error in `*tmp*`[[1]] : ...
0
votes
1answer
298 views
invalid vector <T> subscript
I am trying to make a two dimensional vector with where the 0 and 1 coordinates are both complex numbers, defining the vector seems to be working fine, but when i try to access it, i get an error that ...
2
votes
1answer
74 views
Vector Subscript failing to add elements
After writing some pretty terse C++ using the sub script operator, I have a small error in the program - there's no output.
I input this (Linux)
54 73 89 43 38 90
in then hit Cntrl + D for EOF. ...
0
votes
2answers
231 views
How to display subscript in Visual C#?
I am making a projectile motion simulation program for my A level Computing project and I need to use physics notation with subscripts. I have no idea how to use this in a label or a rich text box.
...
0
votes
1answer
2k views
Matlab-Subscript indices must either be real positive integers or logicals
Where did I go wrong?
the problem is in: R = sqrt(bsxfun(@minus,XX,(XX)').^2+bsxfun(@minus,YY,(YY)').^2);
EO = 8.8541e-12; %eps0
A2 = 1.0e-2; %2a
N = 100; %num of subareas in a plate
M = sqrt(N); ...
4
votes
2answers
195 views
Use a vector to index a matrix without linear index
G'day,
I'm trying to find a way to use a vector of [x,y] points to index from a large matrix in MATLAB.
Usually, I would convert the subscript points to the linear index of the matrix.(for eg. Use a ...
0
votes
2answers
845 views
How do I resolve the error “incorrect number of subscripts on matrix” in this R script? [closed]
I'm currently writing a script, to iterate through a list of files, pull values from both a control and treatment sample, calculate several statistical metrics from them (such as a Wilcox test and ...
0
votes
2answers
455 views
error: invalid types 'double*[double]' for array subscript
I'm trying to create a programme which will place all of the real numbers in an array - with the ordering of the numbers taking place in a separate function - into descending order, and print them ...
0
votes
4answers
116 views
How to apply subscript to alphabets in html combo box
i am trying to apply a subscript for an alphabet in option tag of an html select combo box. For numbers i found a solution by substituting it with some unicodes, but nothing found for alphabets.
i ...
0
votes
0answers
80 views
Subscript using Mrecord in Graphviz
I have a graph generated with Graphviz, using Mrecord. The graph looks like this:
However, I would also like to improve the graph content, such that every number next to my 'x' symbol is rendered as ...
0
votes
1answer
277 views
Formatting NSString for superscript and subscript
I am writing a utility app for some coworkers. The app is essentially a custom notepad, with buttons that represent the shorthand they use to transcribe a task. All of the buttons add a string to ...
1
vote
2answers
96 views
Make R consider negative position searches as being out of bounds
vec<-c("a", "b", "c", "d")
my task is to extract the second element from the right and left of the key string.
If our key string is "d", if we do
i<-c("d")
vec.1 <- append(vec.1, ...
1
vote
4answers
71 views
Recognizing an interger as a float in 2 dimensional array subscript
Here's the code that I'm currently using
template <class T>
float Knapsack<T>::knapTable()
{
const int MAXSIZE = 40000;
int temps = nObjects - 1;
float** memoize = new ...
4
votes
3answers
604 views
C# How to add subscript characters in paragraphs using Word Automation?
Greetings Stack Overflow Community,
I’m new here, so please don’t judge hard =)
Situation:
I’m working on a program in C# that uses Microsoft Word 14.0 Object Library to create a .doc file, add ...
0
votes
1answer
100 views
I'm getting a “subscript out of range error” everytime I debug this code. Can someone please help me pinpoint the error or errors? [closed]
I've checked all my strings and arrays. Nothing looks wrong to me. My include statements may be the problem. Perhaps I am missing one. I'm am a novice programmer. So I am clueless as to why this code ...
1
vote
0answers
26 views
I keep having superscript in my atristeer template
I'm trying to make a template for my blog with artisteer. Now in my design i keep seeing a superscript and subscript line and they are above the normal text. Any idea what i should and shouldn't do?
9
votes
6answers
1k views
Python slice first and last element in list
Is there a way to slice only the first and last item in a list?
For example; If this is my list:
>>> some_list
['1', 'B', '3', 'D', '5', 'F']
I want to do this (obviously [0,-1] is not ...
6
votes
1answer
175 views
About the array subscripting operator
Quoting from the C11 standard :
Array subsripting (§ 6.5.2.1)
The definition of the subscript operator [] is that E1[E2] is identical to (*((E1)+(E2))).
I would like to know why are the ...
1
vote
1answer
58 views
how to call overloaded subscript in a copy constructor?
If I remove const from the copy constructor MyArray(const MyArray& cArrayInput), all is well. Otherwise the following compile error occurs at the line m_paArray[i] = cArrayInput[i]:
error ...
1
vote
1answer
1k views
Error in *tmp*[[j]] : subscript out of bounds
Apologies for long post! I'm new to R and have been working hard to improve my command of the language. I stumbled across this interesting project on modelling football results: ...
1
vote
1answer
610 views
Invalid types `int[int]' for array subscript
I'm trying to compile the next code, but I'm getting this error on the indicated line
"Invalid types `int[int]' for array subscript "
Code:
template<typename T>
class Stack {
private:
...
0
votes
0answers
84 views
QtJambi - Unicode QLineEdit?
Is it possible to set QLineEdits in QtJambi to show unicode text?
I need to display unicode subscript characters in a QLineEdit, though just setting the text of the QLineEdit results in aesthetic ...





