Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
6answers
193 views

Question about class variable declarations in C++

I have a class to represent a 3D vector of floats: class Vector3D { public: float x, y, z; float * const data; Vector3D() : x(0.0), y(0.0), z(0.0), data(&x) {} } My question ...
5
votes
1answer
942 views

How can I fake superscript and subscript with Core Text and an Attributed String?

I'm using an NSMutableAttribtuedString in order to build a string with formatting, which I then pass to Core Text to render into a frame. The problem is, that I need to use superscript and subscript. ...
5
votes
5answers
3k views

Subscript and Superscript a String in Android

How can you print a string with a subscript or superscript? Can you do this without an external library? I want this to display in a TextView in Android.
4
votes
1answer
2k views

Run-time error '9': Subscript out of range - only when Excel VBE is closed

All, I am facing an error with a some VBA code in an Excel macro. Here’s the workflow I am attempting: I have a module that runs code to create a new worksheet, format it and add in a bunch of ...
4
votes
2answers
678 views

How to convert super- or subscript to normal text in C#

I'm writing a slug generator for making nice urls. I'd like to convert m² to m2, but in a generic way that does this for all superscript (or subscript), not just a simple replace statement. Any ...
4
votes
4answers
2k views

Set superscript and subscript in formatted text in wpf

How can i set some text as subscript/superscript in FormattedText in wpf
4
votes
4answers
711 views

Android TextView's subscript being clipped off

The Android TextView clips off my text subscripts (see image below) even when I use android:layout_height="wrap_content" for the TextView. Is there a fix/work-around for this? P/S: Superscripts ...
3
votes
1answer
284 views

R ggplot2 - annotate text with superscript

I want to add an R^2 value to my plot. I passed the label to geom_text() as follows; geom_text(aes(x,y,label=caption),parse=T, data.frame(x=-2,y=80,caption=("R^2=0.43")))) but it plots as ...
3
votes
2answers
130 views

Template function “Subscript requires array type”, but works in smaller projects. Why?

The following code is part of an interpolation function I wrote as part of a larger project. The first version of this function returned the myScalar yval, but I modified it to return a flag on ...
3
votes
2answers
906 views

Subscript / superscript in FormattedText class?

I'm creating Text using the FormattedText class - but how can I subscript oder superscript Text when using this class? I found solution on how to do this when using a TextBlock, but I'm using ...
3
votes
1answer
51 views

how can you know if a problem(or lack of feature) on a certain software is a business case or technical one?

after some googling-fu on making subscript text in crystal report, i found this, this and numerous others. my question is, how can you know if a problem(or lack of feature) on a certain software is ...
3
votes
3answers
1k views

Overloading operator [] for a sparse vector

I'm trying to create a "sparse" vector class in C++, like so: template<typename V, V Default> class SparseVector { ... } Internally, it will be represented by an std::map<int, V> ...
3
votes
2answers
834 views

Mixed Merge in R - Subscript solution?

Note: I changed the example from when I first posted. My first example was too simplified to capture the real problem. I have two data frames which are sorted differently in one column. I want to ...
2
votes
1answer
48 views

Superscript and Subscript in WP7

I'm trying to show "H2O" with the 2 in subscript in a PivotItem Header. E.g. <controls:PivotItem Header="H20"> </controls:PivotItem> I'd also like to assign the same value from code ...
2
votes
1answer
45 views

Subscripting Strings in django templates

Is it possible to subscript strings in django templates ? What i mean is doing print "hello"[:3] => hel in django templates. Writing {{ stringVar[:10] }} throws TemplateSyntaxError: Could not ...
2
votes
1answer
158 views

R: invalid subscript type 'list'

I'm trying to use the indices of a sorted column of a dataset. I want to reorder the entire dataset by one sorted column. area.sort<-sort(xsample$area1, index.return=TRUE)[2] The output is a ...
2
votes
2answers
294 views

UTF8 symbols for subscript letters

I have been looking online for the UTF8 character table. And all I could find for subscripts were numbers 1 to 9 and some of latin letters. I need to find S and B as subscripts for UTF8 Thanks for ...
2
votes
2answers
285 views

How to overload the subscript operator with swig Python

I have a class which contains a std::vector<Foo> where Foo is a class containing a key, value, comment, etc. Please note that there is a reason why I am using a vector and not a dictionary. I ...
2
votes
1answer
79 views

Is it possible to have <sub>scripts in <option>s in html?

I have a drop down menu full of chemical elements. Is there any way I could format them properly? Ex: H2O
2
votes
2answers
396 views

Python: How to deal with non-subscriptable objects?

I've read a thread on what a (non)subscriptable object is but it doesn't tell me what i can do about it. I have a code calling a mypost private module. The aim is to set up mail accounts and to do ...
2
votes
4answers
263 views

Can I use Perl's map with an array slice?

I'm just trying to shorten a line of code that assigns HTML::Element->as_trimmed_text from an array of HTML::Elements to some variables - pretty standard stuff like: my ($var1, var2) = ...
1
vote
0answers
56 views

DataGrid Binding error for object already removed when BindingExpression uses array Index

I am trying to create a DataGrid which is populated by setting the ItemsSource property to an ObservableCollection of PropertyGroup objects where each PropertyGroup object contains an ...
1
vote
1answer
169 views

How to write a subscript and superscript in Matlab that will be displayed in Graphical User Interface(GUI)?

I want to have a subscript and superscript in my GUI in Matlab. So far I have tried to use x_2 and x^2 and neither of them work. Is there anyone who knows how to do this? Thanks in advance!
1
vote
1answer
42 views

Using a subscript operator on a char pointer passed into a function doesn't modify the value. Why? [closed]

I've noticed that the following function: void myFunction(char *myString) { myString[0] = 'H'; } will not actually modify myString. However, this function does: void myFunction2 (char ...
1
vote
3answers
124 views

Which normal fonts support Unicode subscript characters?

I have a need to use the Unicode character 0x2091, a subscript e, rather than using markup for formatting the subscript. However, the usual-suspect fonts don't appear to include a glyph for this ...
1
vote
1answer
89 views

Referencing the ith element of each list in a 2d list

Take a 2d list. I want to make a new list with only the ith element from each list. What is the best way to do this? I have: map(lambda x: x[i], l) Here is an example >>> i = 0 ...
1
vote
2answers
268 views

I am getting a error [ error: expected unqualified-id before ‘&’ token ] in a c++ program

I am getting a unusual error: error: expected unqualified-id before ‘&’ token Source code: // Overloading the c++ array subscript operator [ ] #include<iostream> using namespace std; ...
1
vote
1answer
573 views

HTML styling problem when using <sup> and <sub>

I've noticed that when trying to use superscript or subscript in the following way... <ul> <li><b>Mean Radius</b> 6,371.0 km</li> <li><b>Mean ...
1
vote
4answers
325 views

missing subscript c++

right now c++ is giving me this error: error C2087 'color' missing subscript first time i get this and i dont know what to do >.< hope any1 can help me struct Color{ float r; float g; ...
1
vote
3answers
199 views

MATLAB: How does the syntax (:) work?

Given the following example: >> I=[2 1 3;3 2 4] I = 2 1 3 3 2 4 >> I(:) ans = 2 3 1 2 3 4 >> I(1:2) ans = 2 ...
1
vote
4answers
483 views

Operator() as a subscript (C++)

I use operator() as a subscript operator this way: double CVector::operator() (int i) const { if (i >= 0 && i < this->size) return this->data[i]; else return 0; } ...
1
vote
1answer
462 views

Qt - How to do superscripts and subscripts in a QLineEdit?

I need to have the ability to use superscripts asnd subscripts in a QLineEdit in Qt 4.6. I know how to do superscripts and subscripts in a QTextEdit as seen below but I can't figure out how to do them ...
1
vote
2answers
310 views

Using boost::bind output as an array subscript

How do I get boost::bind to work with array subscripts? Here's what I'm trying to achieve. Please advice. [servenail: C++Progs]$ g++ -v Reading specs from /usr/lib/gcc/i386-redhat-linux/3.4.6/specs ...
0
votes
2answers
76 views

C# change numbers to small indexes in string

I have string "H20" (chemical formula for water). I would like to change it so that all the numbers in the string would be small (the number 2 would be small index next to the letter H). How can I do ...
0
votes
1answer
122 views

How do I fix these 15 errors in Xcode? …Semantic issues and no matching constructor for initialization?

Totally stumped here, need help please... Open Xcode Project > Archive Build Failed with 15 errors ViewController.mm error: No matching constructor for initialization of 'OFDelegate' LinkedList.m ...
0
votes
1answer
30 views

Minimum value returning 0 on an array (goal is to find max and min)

Thanks in advance. I'm having trouble figuring out why my code is giving me trouble when I print a minimum value for this array. It seems to be retaining the initial 0 value for min, but I'm not sure ...
0
votes
3answers
91 views

Why Unicode subscript symbol is not properly displayed in C# Label?

I have a C# Label and I set the text to the String "CO\u2082" (CO2 with the Unicode subscript) . The label is displayed properly on my PC which runs Windows XP service pack 3, but not displayed ...
0
votes
2answers
63 views

Subscript operator overload and reference to pointer error

I'm struggling with a strange error for a while now and I need your help :D I have an 'Image' class declared like template <typename P> class Image { // ... public: // Operators ...
0
votes
2answers
67 views

c++ subscript operator for 2D matrix between different files

I had create a template class of 2D matrix. but subscript operator(LINE 13,14,16~36) canNOT work normally. If I mark LINE 72~74(dio.cpp), program could be run. LINE 91~93 CAN work. If LINE ...
0
votes
2answers
112 views

Sub/Superscripts in UITextView

I want to display and edit superscripts and subscripts my application. In UITextView's documentation it said that you cannot use any kind of formatting that doesn't apply to the whole document. I ...
0
votes
0answers
85 views

How to add subscript/superscript to buttons label in flex?

I need to add subscript or superscript and normal text to buttons label. But as far as I understand button's label property is simple label, if it was RichText it would be easy. I need ...
0
votes
1answer
94 views

Open array files subscript out of range

I'm trying to open up a series of xlm files stored in an array, but the error keeps popping up that says that the subscript is out of range. Any advice? Thanks Dim AllFiles() As String Dim count, ...
0
votes
1answer
124 views

Open .dat files with a Hex Editor

I'm trying to Open up a series of .dat files with a Hex Editor thru the vba in excel and then start a copy and paste process. Does anybody know how one can open up a file using a program other than ...
0
votes
4answers
140 views

How to trim characters in Python?

Very new to Python and have very simple question. I would like to trim the last 3 characters from string. What is the efficient way of doing this? Example I am going becomes I am go
0
votes
1answer
309 views

VBA - Word 2007 - Subscript out of range (error 9)

I don't know what's causing this. I've created a template with a lot of macro code in it. And I've used the Custom UI EDitor for Office 2007 applications to create a custom Tab in the Ribbon ...
0
votes
0answers
299 views

contentEditable superscript & subscript in Chrome

The following DHTML formatting commands each work fine on a div with contentEditable=true in IE, Firefox and Chrome: document.execCommand("superscript", false, null); ...
0
votes
1answer
758 views

AutoIt Get subarray from array

Simple piece of code, in which we want to store the element of array (which in turn is another array) in another variable: Global $arr[1][2] = [ [1, 2] ] Global $sub = $arr[0] And we get Array ...
0
votes
2answers
416 views

reading unicode from sqlite and creating a NSString

Im working on an iOS app where I need to store and retrieve from an SQLite DB, a representation of a NSString that has subscripts. I can create a NSString at compile time with a constant: ...
0
votes
0answers
283 views

How to simulate a Text Edit on a TForm/TPaintBox.TCanvas properly?

Thank you very much for your time! The purpose is to allow user to input discrete superscript & subscript letters (with basic functionality of a TEdit, such as select, and etc). It is better if ...
0
votes
4answers
201 views

subscript operator postfix

The C++ standard defines the expression using subscripts as a postfix expression. AFAIK, this operator always takes two arguments (the first is the pointer to T and the other is the enum or integral ...

1 2