Tagged Questions
The scalar tag has no wiki summary.
21
votes
6answers
6k views
PHP Constants Containing Arrays?
This failed:
define('DEFAULT_ROLES', array('guy', 'development team'));
Apparently, constants can't hold arrays. What is the best way to get around this?
define('DEFAULT_ROLES', 'guy|development ...
8
votes
2answers
190 views
What is Perl's $; variable for?
Does any 1 have any idea what is $; (first split function argument) in the following code snippet:
local(@a) = ();
local($i) = 0;
for ($i = 0; $i < $d; $i++) {
@a = ...
8
votes
5answers
547 views
How should I use Perl's scalar range operator?
What is the scalar ".." operator typical usage? Is it only selecting blocks of text?
Interesting example by myself:
sub get_next {
print scalar($$..!$$), "\n";
}
get_next for 1 .. 5; # prints ...
6
votes
5answers
423 views
When to return a pointer, scalar and reference in C++?
I'm moving from Java to C++ and am a bit confused of the language's flexibility. One point is that there are three ways to store objects: A pointer, a reference and a scalar (storing the object itself ...
6
votes
5answers
3k views
Can you force either a scalar or array ref to be an array in Perl?
I have a perl variable $results that gets returned from a service. The value is supposed to be an array, and $results should be an array reference. However, when the array has only one item in it, ...
5
votes
5answers
391 views
How do I multiply each member of array by a scalar in perl?
Here is the code...
use strict;
use warnings;
my @array= (1,2,3,4,5);
my $scalar= 5;
@array= $scalar*@array;
print @array;
Need something that can perform similar function with little code. ...
5
votes
3answers
1k views
What is the difference between the scalar and list contexts in Perl?
What is the difference between the scalar and list contexts in Perl and does this have any parallel in other languages such as Java or Javascript?
4
votes
3answers
141 views
Perl: does reassigning a new value to a scalar overwrite its current contents in RAM?
I'm using Perl for a security-related task and am wondering when a statement such as:
$test = "new value"
is executed, is the old value that $test created overwritten in RAM?
If not, is there a way ...
4
votes
1answer
141 views
How do I make a subroutine that accepts an array *or* a variable number of scalars?
I'm looking to make a subroutine mysub which should behave such that the following two calls are effectively the same.
mysub(["values", "in", "a", "list"]);
mysub("Passing", "scalar", "values");
...
4
votes
4answers
143 views
returning a lazily-computed scalar, in perl
I'm trying to add some functionality to our code base by using tied scalars.
We have a function which is specified to return scalars. I thought I could add some features to the system by tie-ing ...
4
votes
2answers
156 views
How can I call methods on Perl scalars?
I saw some code that called methods on scalars (numbers), something like:
print 42->is_odd
What do you have to overload so that you can achieve this sort of "functionality" in your code?
4
votes
2answers
145 views
How do I create an object that returns different values in different scalar contexts?
I want to return a different value in string context and numeric context like $! does. I know I can find out whether I am in list or scalar context with wantarray, but is there any way in pure Perl ...
3
votes
5answers
139 views
What does this mean in perl $variable_one{$variable_two} and what is it called?
I saw this in a piece of code:
if (some_condition) {
$index++;
}
$index{$some_variable} = $index{$some_variable} + 1;
What does $index{$some_variable} mean? And why is it used?
Thank ...
3
votes
1answer
114 views
Calling 'scalar' on the results of the range operator (..) in Perl
So, I believe this has something to do with the difference between arrays and lists, but I don't understand what's going on here. Can anyone explain how and why Perl treats an expression like (1..4) ...
2
votes
3answers
42 views
Scalar function taking so much time
I need someone who can tell me what I'm missing.
I have this scalar function in SQL Server 2008:
ALTER function [dbo].[SKU](@id1 int, @id2 int)
returns int
begin
return (
SELECT SUM(Value)
FROM ...
2
votes
2answers
66 views
Perl structures and assignment
In perldata, I found the following examples and explanations.
@foo = ('cc', '-E', $bar);
assigns the entire list value to array @foo, but
$foo = ('cc', '-E', $bar);
assigns the value of variable ...
2
votes
1answer
150 views
Scalar vs. primitive data type - are they the same thing?
In various articles I have read, there are sometimes references to primitive data types and sometimes there are references to scalar's.
My understanding of each is that they are data types of ...
2
votes
1answer
62 views
Perl Conditional not substituting in scalar value
For some reason, my if statements aren't working the way I want them to.
use strict;
use warnings;
my $syl;
my $name = "Chris";
print "Enter my name\n";
$syl = <>;
if ($syl eq $name)
{
print ...
2
votes
7answers
302 views
c# LINQ: how to retrieve a single result
Kind of new to linq,
whats the simplest way to retrieve a single result using linq?
example, my query
var query =
from c in db.productInfo
where c.flavor == "Classic Coke" && ...
2
votes
4answers
204 views
passing scalar reference in perl
I know that pass a scalar to a sub is actually passing the reference, but since I am new to perl I still did the following test:
#!/usr/bin/perl
$i=2;
subr(\$i);
sub subr{
print $_[0]."\n";
...
2
votes
3answers
179 views
Can scalar functions be applied before filtering when executing a SQL Statement?
I suppose I have always naively assumed that scalar functions in the select part of a SQL query will only get applied to the rows that meet all the criteria of the where clause.
Today I was debugging ...
2
votes
4answers
277 views
Perl : scalar vs list context
I just begin to learn perl with an O'Reilly book.
I found an exemple a little weird, may be you could explain me better than the book :
@backwards = reverse qw/ yabba dabba doo /;
print "list ...
2
votes
1answer
351 views
C - only scalar operations?
Reading on Wikipedia:
"The terms high-level and low-level are inherently relative. Some decades ago, the C language, and similar languages, was most often considered "high-level", as it supported ...
2
votes
2answers
4k views
Hibernate Criteria contains-in on an association to a table
Good day,
I have a Hibernate mapping that looks something like this:
<class name="MyEntity">
<set name="scalarSet" table="(select fk, scalar_value from other_table)">
<key ...
2
votes
1answer
803 views
BLAS subroutines dgemm, dgemv and ddot doesn't work with scalars?
I have a Fortran subroutine which uses BLAS' subroutines dgemm, dgemv and ddot, which calculate matrix * matrix, matrix * vector and vector * vector. I have m * m matrices and m * 1 vectors. In some ...
2
votes
8answers
632 views
How can I keep only the first five lines in a Perl scalar?
From any kind of scalar, what regex could I use to match the first five lines of it and discard the rest?
1
vote
1answer
24 views
convert PDL scalar to Perl scalar
I have a function that uses PDL. The final step is a dot product so it returns a scalar. However, when I try to print this scalar, it is clearly still a piddle and prints like this on screen:
[
[ 3 ...
1
vote
5answers
79 views
How to take a value from a database? Must declare the scalar variable “@ID1”
public partial class Form3 : Form
{
string var;
int ID1;
private void button1_Click(object sender, EventArgs e)
{
ID1 = int.Parse(textBox1.Text);
...
1
vote
1answer
60 views
oracle scalar subquery?
I have such a table:
name value1 value2 value3
---------------------------
name1 1 1 1
name2 1 1 2
name3 2 2 11
name4 2 12 2
name5 3 3 ...
1
vote
1answer
53 views
How to convert a Tsql scalar function into a table function?
I am using SSMS 2008 and I have the following scalar function to take a text string and remove all metatags from Microsoft Word. The tags are enclosed in "<...>" and there can be any number of ...
1
vote
1answer
124 views
Error using scalar in managed object
I have some code in an app that creates a CoreData managed object. In this code, I use the following line to set a property:
theAuthor.authorID = 1;
The property is declared like this in the ...
1
vote
1answer
37 views
Rounding in Google Query Language
I'd like to implement a series of queries with rounding in Google Query Language, such as:
select round(age,-1), count(id) group by round(age,-1)
or any combination of int/floor/etc.
select ...
1
vote
1answer
298 views
Python RuntimeWarning: overfow encountered in long scalars
I am new to programming and in my latest Python 2.7 project I encountered the following:
"RuntimeWarning: overfow encountered in long_scalars"
Could someone please elaborate what this means and what I ...
1
vote
1answer
510 views
Scalar type in Managed Object only works for IPhone 5
Property 'Latitude' is a scalar type on class 'LatitudeLongitude'. Cannot generate a setter method for it.
When I generated codes for my managed object, I got a message whether I want scalar ...
1
vote
1answer
128 views
Scalar functions using BLToolkit and Linq
I'm in the process of converting my SQL procedures to Linq using the BLToolkit library.
Now I'm stuck on a little problem so if anyone know is this possible I will really appreciate the help.
Anyway ...
1
vote
2answers
43 views
Seemingly unable to work with ints in struct
struct stVitals // Entity vitals
{
int str;
int xp;
int batk;
};
int doAttack(stVitals Aggressor, stVitals Defender) // Calculate attack results
{
...
1
vote
2answers
92 views
NASM - Extending label with bit flag
I need to set the highest bit of some label address/offset.
I tried:
test.nasm:
BITS 32
dw mylabel | 0x8000
mylabel:
dd 0
But when trying to assemble this I get:
nasm -f bin test.nasm
...
1
vote
2answers
151 views
Should I use Internals::SvREADONLY for creating readonly variables in Perl?
Looking into the Const::Fast source I noticed that it used the built-in function Internals::SvREADONLY internally. Is it safe to use that function directly in my Perl script? It seems to be present in ...
1
vote
2answers
1k views
Getting Current Date Time for a Random Number Generator's Seed
Preferably as a long.
All the example I can find are getting the date/time as a string and not any scalar value. :)
1
vote
0answers
824 views
Hibernate Criteria API and Scalar Subqueries
I want to translate a HQL query to Criteria API but I don't know if it's possible to write the same thing with Criteria.
The HQL looks like this:
select distinct new DataTransferObject(property1, ...
1
vote
1answer
256 views
VB.NET - SQLCommand.ExecScalar() throws unreferenced exception on Return?
I'm calling Sqlcommand.ExecScalar() - stepping through the stored proc works fine, right under
RETURN @RecordNum
@RecordNum correctly contains a bigint, as scoped. When I step into the RETURN.. I ...
1
vote
3answers
81 views
Scalar function in LinqToSql
In ADO.Net/SQLClient I would often do something like this:
SELECT COUNT(*) FROM SomeTable WHERE SomeKey = 1234
...and fire it using executescalar to return the value of count - for a simple check ...
0
votes
1answer
32 views
How to apply a scalar multiplication to a Quaternion
So, I'm converting some c++ to javascript and I really need to know how D3DX defines their quaternion operators.
//Here's the c++ version
D3DXQUATERNION Qvel = 0.5f * otherQuat* ...
0
votes
1answer
20 views
How to find the Max and Min value of a scalar?
Okay, so I'm trying to use Javascript to make a Game (Engine?Maybe...). Unfortunately, that means no extremely detailed library like in Visual C#...
So I'm wondering, if I have vector (which is just ...
0
votes
1answer
47 views
How to solve “uninitialized value in scalar assignment” in Perl code?
How would I solve the following in error in my code:
Use of uninitialized value in scalar assignment at faStat2 line 59.
#!/usr/bin/perl
use strict;
use warnings;
...
$~ = *OUTFILE; #This is the ...
0
votes
1answer
20 views
how to create and call scalar function in sql server 2008
i have created a Scalar Functions, it was created successfully, but when i call the function using select statement, it says invalid object, i altered the function, i got the message command completed ...
0
votes
1answer
24 views
How to query a hibernate set of strings?
I'm using Gorm to attempt to query over an association that is represented as a Set. I want to know if one or the other of two values is contained in the association. My problem is I don't know how to ...
0
votes
2answers
153 views
C# - Must declare the scalar variable “@ms_id” - Error
I'm writing an web-app that keeps track of deadlines. With this app you have to be able to update records that are being saved in an SQL DB.
However I'm having some problem with my update in my ...
0
votes
2answers
58 views
ExecuteScalar compilation error
I'm getting an error on ExecuteScalar(). It says I must declare the scalar variable @PicID. How could I declare a scalar varaible? Or am I doing this entire function incorrectly?
public int ...
0
votes
2answers
144 views
What is the meaning of `$array[x, y]` in Perl?
I know @array[0,2,6] is an array with multiple values.
And I was under the belief that $scalar=3 is a single variable with a single scalar value.
However, what is $array[3, 4]? Is it a scalar ...