Top "Assign" questions

Something related to an assignment operation, i.e. the process of changing the content of a variable to reflect some given value.

How to assign from a function which returns more than one value?

Still trying to get into the R logic... what is the "best" way to unpack (on LHS) the results from …

r return-value variable-assignment assign multiple-results
How to name variables on the fly?

Is it possible to create new variable names on the fly? I'd like to read data frames from a list …

r assign r-faq
return an entire row of a multidimensional array in VBA to a one dimensional array

Is there any way to return the value of an entire row of a multidimensional array to a one dimensional …

arrays excel vba multidimensional-array assign
Cannot Assign because it is a method group C#?

Cannot Assign "AppendText" because it is a "method group". public partial class Form1 : Form { String text = ""; public Form1() { InitializeComponent(); } private …

c# .net methods assign method-group
R: Assign variable labels of data frame columns

I am struggling with variable labels of data.frame columns. Say I have the following data frame (part of much …

r dataframe labels assign hmisc
Initializing a vector of vectors having a fixed size with boost assign

Having a vector of vector with a fixed size, vector<vector<int> > v(10); I would like …

c++ boost vector repeat assign
Assign multiple new variables on LHS in a single line

I want to assign multiple variables in a single line in R. Is it possible to do something like this? …

r variables tuples variable-assignment assign
How to make object created within function usable outside

I created a function which produces a matrix as a result, but I can't figure out how to make the …

r function environment-variables global-variables assign
Assigning Values to JSON Objects in Javascript

This is what I'm trying to build via JavaScript in dot or [ ] notation: var shoppingCart = { 'item1' : { 'description' : 'This is …

javascript json object assign
Assignment of objects in C++

To contextualize my question, I'm using a Matrix class with the following definitions: Matrix(unsigned int, unsigned int); // matrix of …

c++ object variable-assignment assign