A subroutine (e.g. procedure or subprogram) is a portion of code within a larger program, which performs a specific task and can be relatively independent of the remaining code. The syntax of many programming languages includes support for creating self contained subroutines, and for calling and ...
-1
votes
0answers
29 views
fortran to matlab, how make subroutine argument's fortran in matlab
In the fortran code, I make subroutine VECT(N1,N2,N3,NOPN).
N1, N2, N3, NOPN is called from other subroutine,
the value is calculated using VECT subroutine.
The input data(N1,N2,N3,NOPN) is depending ...
1
vote
3answers
40 views
Perl sub made from string
I am trying to use a sub in perl that is contained in a string.
Currently I have something like
$sub = "sub{ my $in = shift; if($in =~ /bla.*wam/){return 1;}}";
I try and use it by doing
...
7
votes
1answer
107 views
perl assignment to hash in subroutine return gets weird
Running perl 5.12.4
Am getting disparity between result of a function when a hash is assigned within the return statement or beforehand. Easiest example is:
perl -e 'sub s1 {
my @a=qw/b 1 c 2 a 3 a ...
-1
votes
0answers
27 views
Check if Sub is running, VB.NET [closed]
I have a Sub, that is called from a timer. But if the timer ticks again before the Sub finished its tasks, then the Sub will be aborted, and start from the beginning!
And i don't want that, I want ...
1
vote
1answer
26 views
Nasm entry and exit code of routines
Is there any way to generate the following header and footer for routines in nasm without the need to explicitly code them every time I define a new routine?
Header:
push ebp
mov ebp, esp ...
0
votes
1answer
25 views
calling one autohotkey from another
^!a:
run do
run lots
run of
run things
return
^!b:
run dosomething small
; --- and here I want to do everything that is done for ^!a
I can think of two theoretical ways of doing it: 1. By somehow ...
0
votes
1answer
35 views
Openmp Fortran Subroutine
I am trying to parallelize a subroutine using Openmp.
The subroutine contains a successive over relaxation loop which runs on the total
error which is a shared variable. Now, when I parralelize the ...
1
vote
2answers
53 views
Fortran90: how to keep variables defined in a recursive subroutine from updating upon internal calls?
With the following code, when variable "a" and "a1" are equal to 2, I would like the recursive subroutine to create 2 nested do loops of length 4 (maxdev=4). I am attempting to control the level of ...
-2
votes
0answers
34 views
How do I classify data written in a text file into 2 other .txt files?
Ok for my assignment I need to create a text file called "marks.txt" with the marks of 6 students formatted like this:
Student #
Subject
Mark
etc.
(that six times on top of eachother)
That is ...
0
votes
0answers
37 views
Trapezoidal rule using subroutine
I am trying to write a program on fortran using subroutines. The program needs to be able to integrate the function 3x^2-5x-4 from x=3 to x=8 using the trapezoidal rule.
So far I have wrote:
PROGRAM ...
1
vote
2answers
48 views
What kind of enhancement is this (FORM USEREXIT_*), and how do I implement such an enhancement
I have an include RV60AFZZ, and a form USEREXIT_NUMBER_RANGE.
On one system, this form contains an addition
*{ INSERT ASDF555555 1
"Custom code ...
0
votes
1answer
68 views
MIPS Assembly subroutines & stacks, Exception 5 bad data address, Exception 7 address error in store
I'm trying to figure out some stack frame business with assembly, and i admittingly have little idea what i'm doing... but i think i'm close?
My program calls a subroutine that counts down from 10 ...
0
votes
1answer
38 views
Pass value to referenced subroutine in perl
I have few referenced subroutine and I need to pass the value to the referenced subroutine.
Is there any way to do it.
#Sample Code
sub CreateHtmlBox {
my ($box_type,$hash_ref) = @_;
...
0
votes
0answers
52 views
fortran code optimization-How to auto-generate the number of times each subroutine has been called
Is there any way we can figure out how many times each subroutine has been called? not obviously by adding a counter for each subroutine but like a self-generated report after the program finished ...
6
votes
4answers
205 views
What is the reason to use parenthesis-less subroutine calls in Perl? [closed]
As per perldoc perlsub:
The & is optional in modern Perl, as are parentheses if the subroutine has been predeclared.
I notice that a lot of times, people use the fact that you can omit ...
3
votes
2answers
95 views
Copying the first N keys and values of a Hash of array
I have a hash of arrays.
%HoA = (
'C1' => ['1', '3', '3', '3'],
'C2' => ['3','2'],
'C3' => ['1','3','3','4','5','5'],
'C4' => ['3','3','4'],
'C5' => ['1'],
);
...
1
vote
1answer
82 views
How to know the procedure by which subroutine called? in excel vba
I sometimes has error on subroutine.The subroutine is called by many procedure. So, I try to find caller procedure for step over.
By the way, user-defined function can know the caller.
It is ...
-1
votes
1answer
75 views
Calling subroutine N number of times within a foreach loop
I have the two hash of arrays (HoA) that correspond to the following file:
A 10 15 20 25
B 21 33 21 23
C 43 14 23 23
D 37 45 43 49
Here are my HoAs.
my %first_HoA = (
...
1
vote
2answers
18 views
a generic dialog load routine
i have alot of dialog in my winform app and i do this for each one of them when i need to load
Dim frm As New Settings
frm.ShowDialog()
frm = Nothing
i was thinking if its possible ...
1
vote
2answers
128 views
How to pass value of a hash of arrays into a subroutine?
I have a hash of arrays. I'm trying to do the following: as I'm looping through the keys of the hash, I would like to pass the value of the hash (in this case the array) into a subroutine.
Once I'm ...
0
votes
2answers
39 views
Retrieve hash between two subroutines
I would retrieve my hash table when i pass it in argument at a function. In my case, function1 return my hash table, then i pass my hash table in argument to my function2 and in my function2 i would ...
-1
votes
1answer
53 views
Perl : retrieve array of hash from subroutine return 2 hashes [closed]
I have a subroutine which return two hashes and contains in key a ID and in value an ARRAY.
So i would access with key to retrieve my array.
sub sub1{
my code
return (\%hash1, \%hash2);
}
sub sub2{
...
-1
votes
2answers
65 views
Visual Basic - How to send values in a subroutine back to the main program?
I have an assignment in Visual basic I don't know how to do. I am to create 2 sub routines and 1 function that send values back to main calling program. The main program populates the combobox and ...
0
votes
1answer
89 views
Is there a way in Fortran to write to an output file from subroutine when the file has open statement in main program.
In Fortran, I am trying to write to an output file from subroutine when the file has open statement in the main program. In other words, how do I pass file unit number (terminal number) to subroutine ...
0
votes
1answer
118 views
FORTRAN: Segmentation fault, when passing functions with array arguments to subroutine
I am working on a project (which is due tomorrow :/) and encountered a problem when I tried to use a simplex algorithm on a function I wrote myself. It didn't work, and after now 5 hours of searching ...
0
votes
2answers
145 views
Pass variable from a child to parent in KSH
I have to work with KSH (yeah that hell shell).
I need to use a fork, a subroutine as following:
#!/bin/ksh
PIPE=PIPE_$$
PIPE_ERR=PIPE_ERR_$$
export TEST_FILS
$(. ...
2
votes
3answers
91 views
Getting wrong argument value when using @_ in Perl subroutine
I encountered a strange bug while using @_ to pass a single argument to a Perl subroutine. The value passed to a subroutine changes right after entering the subroutine.
Code example:
my $my_def = ...
0
votes
2answers
53 views
How to generate hash from subroutine?
I am trying to collect some snapshots of my db and do some math with it , but I'm failing to return my hash from my subroutine ...
As you can see I have 2 hashes %dbmcfg,%bufsnap,%dbsnap I have ...
0
votes
2answers
86 views
Perl variable set from query string not available in subroutine (available in some subroutines!)
Perl has beaten me down good today and I have a question. I'm accessing a perl script via a link from another perl script. agent.pl?agentid=40
In the agent.pl script I'm using the displaying the ...
1
vote
1answer
95 views
Fortran: Calling a function in a module from a procedure in another module
I admit the title might be a bit obscure, so let me give an example of what I want to do and what doesn't work. I have a main program which calls a subroutine which is in a module:
Program ...
2
votes
1answer
235 views
How to define a procedure type that works for a local procedure? [closed]
I'm creating a request queue in a custom thread TMyThread and I'm having difficulties defining a procedure type which can be used for a subroutine. I have a record which represents the request, a ...
1
vote
1answer
164 views
Passing multi-dimensional array in fortran subroutines
I am trying to understand a Fortran code written by someone else. The code is doing what it is supposed to do so I am assuming that it works fine. A subroutine called "fft" is being called from ...
0
votes
1answer
106 views
nasm calling subroutine from another file
I'm doing a project that attaches a subroutine that I wrote to a main file included by the teacher. He gave us the instructions for making our subroutine global but apparently I'm an idiot. The two ...
1
vote
2answers
94 views
How to create subroutine in mysql perl with variables
I have two mysql commands. I want to create a subroutine with these two mysql commands for the rest of my data that I have to search through. I have a lot of entries. Is there a way to create a ...
3
votes
3answers
111 views
Why does Perl sub s require &
The following file does not compile:
sub s {
return 'foo';
}
sub foo {
my $s = s();
return $s if $s;
return 'baz?';
}
The error from perl -c is:
syntax error at foobar.pl line 5 ...
-1
votes
2answers
62 views
how to use particular external subroutine in Perl
I have a pm file that contains several subroutines. Following is the example of the script "myscript.pm":
sub a();
sub b();
sub c();
a(); #this can not be deleted in my situation in this pm ...
1
vote
1answer
74 views
Access Continuos Subform Repeating Information
Access Database Form1 is a Continuous Form that has an EmployeeID field you can double click to take you to another form that contains information about the Employee. In order to retain the correct ...
1
vote
4answers
116 views
Perl Anonymous Subroutine/Function error
I have the following piece of code: (extremely simplified for the purposes of this question, but perfectly illustrates the problem I am having)
#!/usr/bin/perl
use strict;
use warnings;
&outer;
...
0
votes
1answer
90 views
How to reference and dereference a hash of hashes for subroutines in Perl
Does anyone know how to dereference a hash of hashes so that I can use it in my subroutine. As you can see, I'm having trouble accessing my Hash of Hashes data structure in my subroutine.
my ...
4
votes
1answer
71 views
local($?) in END blocks - Why does it matter what value was assigned to it?
At work, we encountered an error when interacting with child processes in an object's destructor, and eventually traced it to the $? variable being overwritten during the wait calls. This happens ...
0
votes
1answer
136 views
For VBScript, what's the advantage of a subroutine?
I may simply misunderstand the difference between the two: If the only difference between a subroutine and a function is that a function has the option of returning a value while a subroutine does ...
0
votes
0answers
38 views
Zend ini routing limitless subpages
Currently I'm working on a system which has build-in pages. The pages work with parent and child pages which means sub-paging works. Now, i've been searching on the web all morning to find out how I ...
1
vote
1answer
131 views
How can I convert U2 Business Logic Subroutine’s multi-value data into .NET Objects such as DataSet/DataTable using U2 Toolkit for .NET?
I have the following subroutine. It takes INPUT as argument 1 and sends multi-value data OUTPUT as argument 2.
SUBROUTINE MV_TO_DATASET_SELECT_SUBROUTINE(ARG_INPUT,ARG_OUTPUT)
x = ARG_INPUT
...
0
votes
1answer
211 views
Windows Media Player PlayStateChange
I am using Visual Basic.net and the Windows Media Player control. Is it possible to determine the Object when the PlayStateChange event occurs.
Here is the sub:
PlayStateChange(NewState As Integer)
...
1
vote
2answers
42 views
Perl DBI Constants - how to access?
The documentation for getting type info includes this piece of suggested code for getting the mapping between code and integer:
foreach (@{ $DBI::EXPORT_TAGS{sql_types} }) {
printf "%s=%d\n", $_, ...
3
votes
2answers
78 views
Should a subroutine croak when called with more arguments than expected?
Should a subroutine croak when called with more arguments than expected or should the extra arguments simply be ignored?
#!/usr/bin/env perl
use warnings;
use strict;
sub routine {
my ( $a, $b ...
2
votes
3answers
74 views
Get batch file name from a subroutine
In a subroutine, %0 expands to the subroutine name, not the script name. Is there a ligitimate way to still access the script name, or should I pass it as an argument?
@echo off
call :subroutine ...
0
votes
2answers
544 views
VBA: subroutine with if statement and returning true or false?
SOLVED!
I have to validate that certain cells are not empty, so I want to create a subroutine and pass the variables I need checked.
This is what I came up with:
Sub errorMessage(errMsg As String, ...
2
votes
2answers
82 views
Fastest way of calling a subroutine
As far as I know, in Perl, we can call a subroutine from a Module by using these techniques:
Export subroutine foo, import the module which has this subroutine. Finally call it in your perl script.
...
-1
votes
1answer
138 views
EXCEL vba subroutine pass letter for range update
i want to shorten this code and i know it's possible i just dont know the proper syntax
i want to create a subroutine to update the font colors and just call it from the if statements by changing ...
