Controlling the text in plot 'xyz' title 'text'Hi
Can somebody help me out?
I want to change the text fonts which appear in keys for every line, in
command:
plot "file" title "xyz"
How to use desired font size for xyz above?
Thanks
--
Your's truly
Masroor Bangesh
help title:
gnuplot> help title
The `set title` command produces a plot title that is centered at the
top of
the plot. `set title` is a special case of `set label`.
Syntax:
set title {"<title-text>"} {offset <offset>} {"<font>{,<size>}"}
{{textcolor | tc} {lt <line_type> | default}}
{{no}enhanced}
show title
If <offset> is specified the title is moved by the given offset where
<offset> is specified by either x,y or x,y,z, and may be preceded by
`first`, `second`, `graph`, `screen`, or `character` to select the
coordinate system. See `coordinates` for details. By default, the
`character` coordinate system is used. For example, "`set title
0,-1`"
will change only the y offset of the title, moving the title down by
roughly the height of one character.
<font> is used to specify the font with which the title is to be
written;
the units of the font <size> depend upon which terminal is used.
`textcolor lt <n>` sets the text color to that of line type <n>.
`noenhanced` requests that the title not be processed by the enhanced
text
mode parser, even if...
'^=' and '~='?Hello,
What is the difference between '^=' and '~='?
Thanks,
Duckhye
...
'is not' or '!='A newbie question to you; what is the difference between statements
like:
if x is not None:
and
if x != None:
Without any context, which one should be preferred?
IMHO, the latter is more readable.
On 2014-08-18 21:35, ElChino wrote:
> A newbie question to you; what is the difference between statements
> like:
> if x is not None:
> and
> if x != None:
>
> Without any context, which one should be preferred?
> IMHO, the latter is more readable.
>
"x == y" tells you whether x and y refer to objects that are equal.
"x is y" tells you whether x and y actually refer to the same object.
In the case of singletons like None (there's only one None object),
it's better to use "is".
"ElChino" <elchino@cnn.cn>:
> A newbie question to you; what is the difference between statements
> like:
> if x is not None:
> and
> if x != None:
Do the following: take two $10 bills. Hold one bill in the left hand,
hold the other bill in the right hand.
Now, the bill in the left hand "is not" the bill in the right hand.
However, the bill in the left hand "==" the bill in the right hand.
> Without any context, which one should be preferred?
> IMHO, the latter is more readable.
In almost all cases, both tests would result in the same behavior.
However, the "is not" test is conceptually the correct one since you
want...
'''''''''''''The Running Update/Append Queries Using VBA code Ordeal'''''''''''''' #2Hi,
Thanks for ur help there HJ.
I know how to do the tasks you specified there.
I would like for the update query to use field values from some of the
fields on the form (frmInvoices) such as InvoiceNumber, DateFrom,
DateTo. My problem is that an append/update query can't find the
values in the open Form (frmInvoices) when I specify them as;
[Forms]![frmInvoices]![InvoiceNumber]
a select query has no problem finding the field values on a form.
please help.
Aaron
Hi Aaron,
Could you post the entire code that you are having trouble with? Now it is
not possible to see what goes wrong.
HJ
"Aaron" <aaron@rapid-motion.co.uk> wrote in message
news:260d7f40.0408120245.2f3d01f8@posting.google.com...
> Hi,
>
> Thanks for ur help there HJ.
>
> I know how to do the tasks you specified there.
>
> I would like for the update query to use field values from some of the
> fields on the form (frmInvoices) such as InvoiceNumber, DateFrom,
> DateTo. My problem is that an append/update query can't find the
> values in the open Form (frmInvoices) when I specify them as;
>
> [Forms]![frmInvoices]![InvoiceNumber]
>
> a select query has no problem finding the field values on a form.
>
> please help.
>
> Aaron
First off, if you are not always using all the parameters specified in
your form, then you have to add parameters to your query on the fly.
Also, you can't just do something like
qdf.SQL = "SE...
if str_mo not in ('','.') and str_da not in ('','.') and str_yy not in ('','.') Any shorter ?Hi, there.
=20
I'm just curious if it ever dawned on anybody how to abbreviate this
line :
if str_mo not in ('','.') and str_da not in ('','.') and str_yy not in
('','.')=20
=20
Igor Kurbeko
Clinical Programmer Analyst
678 336 4328
ikurbeko@atherogenics.com
=20
no brain no pain
=20
how about:
if not (str_mo in ('','.') or str_da in ('','.') or str_yy in
('','.'))
OR
if not (missing(str_mo) or missing(str_da) or missing(str_yy))
Eric
On 22 Oct 03 21:13:37 GMT, ikurbeko@ATHER...
A function with 'and' , 'not' , 'null' , 'car' and 'cdr'What's this ?
(defun enigma (x)
(and (not (null x))
(or (null (car x))
(enigma (cdr x)))))
"I suppose I should learn Lisp, but it seems so foreign."
- Paul Graham, Nov 1983
On Wed, Oct 07 2015, CAI GENGYANG wrote:
> What's this ?
>
>
> (defun enigma (x)
> (and (not (null x))
> (or (null (car x))
> (enigma (cdr x)))))
Bad taste? It returns T if the list X contains nil as an element. It
would be clearer to write (some #'null x).
Helmut
CAI GENGYANG ...
How to add records with 'Autonumber' property to a MS Access database using LabVIEW?I am trying to write to a MS Access database. Everything works fine as
long as I add data to all records at the same time.
The database I am using have two tables (just for testing) with a
'one-to-many' relationship between the two. They both have a
PrimaryKey with the data type 'AutoNumber'. From what I understand
those numbers should be automatically generated when new data is
written to the DB. I can't get that to work with LabVIEW.
I am using the function 'DB Tools Insert Data.vi'. According to the
manual I should be OK with specifying the column I want to write...
error: expected '=', ',', ';', 'asm' or '__attribHi
I'm trying to compile an ADC Driver & come acrosss the following error.
I've no experience writing drivers before, and hence have no clue how
to fix it.
Hope someone out there has encountered the problem & suggesst a fix for
the same.
The Error is I get is :
qadc.c: At top level:
qadc.c:97: error: expected '=', ',', ';', 'asm' or '__attribute__'
before 'qadc_read'
make: *** [qadc.o] Error 1
[root@localhost qadc]#
###########################################################################
ADC Driver Code
##...
error: expected '=', ',', ';', 'asm' or '__attribHi
I'm trying to compile an ADC Driver & come acrosss the following error.
I've no experience writing drivers before, and hence have no clue how
to fix it.
Hope someone out there has encountered the problem & suggesst a fix for
the same.
The Error is I get is :
qadc.c: At top level:
qadc.c:97: error: expected '=', ',', ';', 'asm' or '__attribute__'
before 'qadc_read'
make: *** [qadc.o] Error 1
[root@localhost qadc]#
###########################################################################
ADC Driver Code
###########################################################################
#define MODULE
#define __KERNEL__
#include <linux/config.h>
#include <linux/module.h>
#include <linux/kernel.h> /* printk */
#include <linux/fs.h> /
#include <linux/errno.h> /* error codes */
#include <linux/types.h> /* size_t */
#include <linux/proc_fs.h> /* proc file system */
#include <linux/fcntl.h>
#include <asm/system.h> /* cli, flags */
#include <asm/uaccess.h> /* copy from/to user */
/*Registers to get qadc access*/
volatile unsigned short * qadcmcr = (unsigned short *)0x40190000;
volatile unsigned short * qacr0 = (unsigned short *)0x4019000a;
volatile unsigned short * qacr1 = (unsigned short *)0x4019000c;
volatile unsigned short * qacr2 = (unsigned short *)0x4019000e;
volatile unsigned short * qasr0 = (unsigned short *)0x40190010;
volatile unsigned short * qasr1...
Override 'and' and 'or'Is it possible to override 'and' and/or 'or'? I cannot find a special
method for it... __and__ and __rand__ and __or__ and __ror__ are for
binary manipulation... any proposals?
Have marvelous sunday,
Marco
Dekker <m.aschwanden@gmail.com> wrote:
> Is it possible to override 'and' and/or 'or'? I cannot find a special
> method for it... __and__ and __rand__ and __or__ and __ror__ are for
> binary manipulation... any proposals?
If you want to customize the truth value testing you have to implement
__nonzero__
"
__nonzero__( self)
Call...
Difference between 'is' and '=='Hey guys, this maybe a stupid question, but I can't seem to find the
result anywhere online. When is the right time to use 'is' and when
should we use '=='?
Thanks alot~
mwql:
>Hey guys, this maybe a stupid question, but I can't seem to find the
>result anywhere online. When is the right time to use 'is' and when
>should we use '=='?
http://docs.python.org/ref/comparisons.html
--
Ren� Pijlman
mwql wrote:
> Hey guys, this maybe a stupid question, but I can't seem to find the
> result anywhere online. When is the right time to ...
How do I set MS Access NOT to use my profile's 'My Documents'Hello All,
I need to set Access to use my local folder, and not my 'My Docs'
folder which is in a netwrok drive.
I did the setting thru' options, but when I logged in again, it was
pointing to 'My Docs' folder.
How do I set this folder permanently?
Regards
K. Lakshmanan
On 4 Mar 2006 01:53:07 -0800, lakshmanan.kk@gmail.com wrote:
>Hello All,
>I need to set Access to use my local folder, and not my 'My Docs'
>folder which is in a netwrok drive.
>I did the setting thru' options, but when I logged in again, it was
>pointing to 'My Docs' fo...
Does '!=' equivelent to 'is not'I'm a bit confusing about whether "is not" equivelent to "!="
if a != b:
...
if a is not b:
...
What's the difference between "is not" and "!=" or they are the same thing?
pirata wrote:
> I'm a bit confusing about whether "is not" equivelent to "!="
>
> if a != b:
> ...
>
> if a is not b:
> ...
>
>
> What's the difference between "is not" and "!=" or they are the same thing?
No, they are not the same thing. == and != test to see if the *value* of
two variables are the same. Like so:
>>> a = 'hello world'
>>> b = 'hello world'
>>> a == b
True
a and b both have the value of 'hello world', so they are equal
is and is not, however, do not test for value equivalence, they test for
object identity. In other words, they test to see if the object the two
variables reference are the same object in memory, like so:
>>> a is b
False
a and b are assigned to two different objects that happen to have the
same value, but nevertheless there are two separate 'hello world'
objects in memory, and therefore you cannot say that a *is* b
Now look at this:
>>> c = d = 'hello world'
>>> c == d
True
>>> c is d
True
In this case, they are again the same value, but now the is test also
shows that they are the same *object* as well, because...
'!' vs. '.'Is there an advantage to using the '!' notation to represent form/
control relationships? (eg. Me!text1 vs Me.text1)
I am currently using the '.' notation exclusively (for code completion
in the VB Editor), but much of the high-quality code that I've seen
(in Duane Hookom's Query-by-Form db, for example) uses the other.
Here's one opinion for you: http://doc.advisor.com/doc/05352
robert.waters wrote:
>Is there an advantage to using the '!' notation to represent form/
>control relationships? (eg. Me!text1 vs Me.text1)
>
>I am currently using the '.' notation exclusively (for code completion
>in the VB Editor), but much of the high-quality code that I've seen
>(in Duane Hookom's Query-by-Form db, for example) uses the other.
--
HTH - RuralGuy (RG for short) acXP WinXP Pro
Please post back to this forum so all may benefit.
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/Forums.aspx/databases-ms-access/200704/1
Here's my $0.02 worth on this.
I tend to copy the notation style and naming conventions that I see being
used in the Help files.
That would be Me![text1] for a control on a form. I am of the belief that
this notation explicitly refers to a control itself rather than a field in
the form's recordset.
Here's an example:
I have a parts inventory app that uses a "Line" code, which is usually a
3-character abbreviation for a brand name, and is the na...
logical to 'on' / 'off'Hi,
is there a function implemented doing this conversion?
my Problem is, that I want to use the following code:
set(handles.edit_curr_trq_sl,'Enable',get(hObject,'Value'))
where get(hObject,'Value') gives the state of a checkbox
thank you!
function [str]=tf2oo(logic)
switch logic
case 0
str='off';
case 1
str='on';
end%switch
end%function tf2oo()
while i do not know a built in function, I use my own:)
meisterbartsch wrote:
>
>
> function [str]=tf2oo(logic)
> switch logic
> case 0
> str='off';
&g...
difference between ',' and 'a,'Small question. In gforth is there a difference between the words ',' and 'a,'?
I'm thinking not, so perhaps another question, why have both ',' and 'a,'?
Thanks
Should be the same, in gforth:
see ,
: ,
here cell allot ! ; ok
see a,
: ,
here cell allot ! ; ok
On Friday, January 9, 2015 at 5:46:04 AM UTC-8, beeflo wrote:
> Small question. In gforth is there a difference between the words ',' and 'a,'?
>
> I'm thinking not, so perhaps another question, why have both ',' and 'a,'?
>
> Thanks
beeflo <beeflobill@gmail.com> writes:
>Small question. In gforth is there a difference between the words ',' and 'a,'?
>
>I'm thinking not, so perhaps another question, why have both ',' and 'a,'?
In Gforth itself, there is no difference. In Gforth's cross compiler,
"a," is there for addresses, and "," is there for other cells;
addresses can then be relocated when loading the image.
- anton
--
M. Anton Ertl http://www.complang.tuwien.ac.at/anton/home.html
comp.lang.forth FAQs: http://www.complang.tuwien.ac.at/forth/faq/toc.html
New standard: http://www.forth200x.org/forth200x.html
EuroForth 2014: http://www.euroforth.org/ef14/
...
'[OFF]' as in 'offensive'???Hi,
given that 'off-topicness' is indicated as '[OT]' and taking a look at
those postings that started the threads indicated as '[OFF]' (which may
both be seen as being somewhat offensive) may lead to the conclusion
that '[OFF]' stands for offensiveness.
I don't think that this is the intended meaning so what actually *does*
'[OFF]' mean? I never came across that abbreviation before (although I
have been around on the USENET for quite some time) but maybe it is
worth knowing?
Josef 'Jupp' Schugt NOTE: mails >100 KiB are ignored
--
German edition of comp.lang.ruby FAQ - http://oss.erdfunkstelle.de/ruby/
Aurox Linux - http://qurl.net/7q | http://qurl.net/7r - Firefox
Thunderbird - http://qurl.net/7s | http://qurl.net/7t - Liferea
Enigmail - http://qurl.net/7u | http://qurl.net/7v - GnuPG
[Josef 'Jupp' Schugt <jupp@gmx.de>, 2004-12-10 23.20 CET]
> I don't think that this is the intended meaning so what actually *does*
> '[OFF]' mean?
Off-topic.
...
Re: '^=' and '~='?Duckhye,
According to the doc ( http://xrl.us/befwjx ) they, and one other set of
characters, and the mnemonic 'NE' all represent 'NOT EQUAL'.
Art
-------
On Wed, 11 Feb 2009 16:52:40 -0600, Duck-Hye Yang <dyang@CHAPINHALL.ORG>
wrote:
>Hello,
>What is the difference between '^=' and '~='?
>
>Thanks,
>Duckhye
...
Using Access to 'access' an sql database on a webserverIs this possible?
I know about a bit about ODBC and found how to import an ODBC database
stored on the computer, however I am after accessing an SQL database
stored on a webserver. I'd like to keep it up to date, but that could
probably be done with a macro.
At the moment I'm just considoring possible options, so just need to
know if it can be done, how easy and a rough idea of how.
Any help would be much appreciated!
Flic
On 6 Oct 2006 03:59:25 -0700, "Flic" <FelicityP@gmail.com> wrote:
I typically create an ADP, then connect to such db specifying the IP
address...
'a'..'z'Is it possible to achieve something like this?
switch (mystring.charAt(0)) {
case 'a'..'z':
// do something
break;
}
"cruster" <cruster@gmail.com> wrote in message
news:1151319731.988814.326200@m73g2000cwd.googlegroups.com...
> Is it possible to achieve something like this?
>
> switch (mystring.charAt(0)) {
> case 'a'..'z':
> // do something
> break;
> }
>
There are times when an if statement may be more appropriate ;)
Sorry - java is not VB :)
--
LTP
:)
cruster schreef:
> Is it possible to achieve somethi...
Re: How to add records with 'Autonumber' property to a MS Access database using LabVIEW?I applied the same approach as you guys have described,
however my problem starts before I get to autonumber.
I have an issue feeding column (data) from "DB tool list column VI"
to "DB Tools insert data VI" .So when I connect column
output of "DB tool list vi" to column input of "Insert data Vi
" I get an error message "exception occurred in Microsoft OLE DB
Provider for ODBC Drivers, [Microsoft][ODBC Microsoft Access Driver] Syntax
error in INSERT INTO statement.."
However, when I don?t connect column between those two v...
We Are Selling The Nextel I930 For Just $130usd'''''''''''
Dear Customer
We have all brands of Mobile Phones,Ipods,Sidekicks,Nextel
phone,Laptops for sell at cheap an
affordable prices, they ranges from Nokia/Samsung/LG/Son
Ericsson/Motorola/Alcatel/panasonic With Bluetooth, al
Brands and Models of Nextel Phones, we want you to get bac
to us with your quote so that we can begin a good busines
relationship. Note they are all Brand New T2 Euro specs
unlocked, no operator logo, come in thei
original sealed box, With 1 year international warrant
from the manufacturer, English & Spanish manual, Finlan
made
We want to assure you that you will never regret buyin
from us because the delivery will be to your doorstep vi
FedEx Courier service.And the Tracking number shall be sen
to you upon acknowledgement of your payment
Kindly acknowledge the reciept of our mail and get back t
us at mobiledealer_ltd@yahoo.co
--
lolasam
whats your url?
lolasam wrote:
> Dear Customers
>
> We have all brands of Mobile Phones,Ipods,Sidekicks,Nextels
> phone,Laptops for sell at cheap and
> affordable prices, they ranges from Nokia/Samsung/LG/Sony
> Ericsson/Motorola/Alcatel/panasonic With Bluetooth, all
> Brands and Models of Nextel Phones, we want you to get back
> to us with your quote so that we can begin a good business
> relationship. Note they are all Brand New T2 Euro specs,
> unlocked, no operator logo, come in their
> original sealed box, With 1 year international warranty
> from the manufacturer, English &a...
Re: How to add records with 'Autonumber' property to a MS Access database using LabVIEW? #2Hi Alex77,
can you please post your vi?
so that it will be easier to understand your problem.
Any of the field has autogenerated values???
...
Re: if str_mo not in ('','.') and str_da not in ('','.') and str_yy not in ('','.') Any shorter ? #2Igor,
There are many ways to make it more concise, however the parsimony is likely
to be achieved at the expense of clarity. For instance, the expressions
length ( input (mm||dd||yy, $10.) ) > 2
length ( compress(mm||dd||yy, ' .') ) > 2
and like might be somewhat shorter than the original, but they will execute
slower, and their intent is far less eminent. Since it appears that you are
trying to validate the components of a date, maybe it is not a worthless
idea to try the date informat conforming to the mask you are testing. Say if
all the pieces are 2-digit, the expression
input (mm||dd||yy, ?? mmddyy6.)
will return a missing value for the case you are testing and also if any
irregularities in the input value that prevent it from being interpreted as
a valid date should be found. And if you want a note in the log to alert you
about it, leave one of the question marks off.
Kind regards,
=================
Paul M. Dorfman
Jacksonville, FL
=================
>From: Igor Kurbeko <ikurbeko@ATHEROGENICS.COM>
>Reply-To: Igor Kurbeko <ikurbeko@ATHEROGENICS.COM>
>To: SAS-L@LISTSERV.UGA.EDU
>Subject: if str_mo not in ('','.') and str_da not in ('','.') and str_yy
> not in ('','.') Any shorter ?
>Date: Wed, 22 Oct 2003 17:13:37 -0400
>
>Hi, there.
>
>
>
>I'm just curious if it ever dawned on anybody how to abbreviate this
>line :
>
>if ...