• 回答数

    5

  • 浏览数

    302

木木兮123
首页 > 英语培训 > 变量英文意思

5个回答 默认排序
  • 默认排序
  • 按时间排序

请叫我姚锅

已采纳

自变量(Independent variable)和因变量(dependent variable):一、解释:函数中的专业名词,函数关系式中,某些特定的数会随另一个(或另几个)会变动的数的变动而变动,就称为因变量。如:Y=f(X)。此式表示为:Y随X的变化而变化。Y是因变量,X是自变量。二、几种简单函数中的举例1 一次函数:①正比例函数:y=kx,其中x为自变量,y为因变量,k为系数。②普通一次函数:y=kx+b,其中x为自变量,y为因变量,k为系数,b为常数项 (常数项即为恒定不变的数值)2.反比例函数:y=k/x,与正比例函数中各字母的含义相同。3.二次函数:y=ax²+bx+c,其中x为自变量,y为因变量,a为二次项系数,b为一次项系数,c为常数项。

变量英文意思

305 评论(15)

笑傲江湖之悟空

1.Python 变量的概述:变量,英文叫做 Variable。从形式上看,每个变量都拥有独一无二的名字,例如 a=1a为变量,1 为值。从底层看:程序中的数据都要放在内存条内,变量就是这块内存的名字。2.Python 变量的命名变量名是标识符的一种,不能随便起,必须要遵守 Python 标识符命名规则,简单理解:标识符就是一个名字,它的主要作用就是作为变量、函数、类、模块以及其他对象的名称。就好像我们人一样,需要起个名字,便于称呼、指代。标识符命名规则:(简称驼峰命名)标识符是由字母(A–Z 和 a–z)、下划线和数字组成。如果标识符中出现除了这 3 类字符之外的其他字符,就肯定是不合法标识符。标识符的第一个字符不能是数字。标识符不能和 Python 关键字相同。标识符中的字母是严格区分大小写的。以下划线开头的标识符有特殊含义,除非特定场景需要,应避免使用以下划线开头的标识符。标识符可以是汉字。但我们应尽量避免使用汉字作为标识符,这会避免遇到很多没必要的错误

121 评论(13)

duxingdejimi

变量来源于数学,是计算机语言中能储存计算结果或能表示值抽象概念。变量可以通过变量名访问。在指令式语言中,变量通常是可变的;但在纯函数式语言(如Haskell)中,变量可能是不可变(immutable)的。那么你知道变量用英语怎么说吗?下面来学习一下吧。

变量英语说法1:

variable

变量英语说法2:

variate

变量英语例句:

为变量或符号确定一个值,或者确定此变量代表的内容。

Establishing a value for a variable or symbol or establishing what the variable represents.

应变量,函数一个与他量有关联的变量,这一量中的任何一值都能在他量中找到对应的固定值

A variable so related to another that for each value assumed by one there is a value determined for the other.

同时,我们还能对“哪些变量为外生变量”这样的问题,有更好的把握。

It is also possible to get a better idea of which variables are exogenous.

本质上,变量的操作性定义是如何或用什么办法测量变量的描述。

There may be more than one operational definition of a variable.

访问会话变量就和 其它 变量一样。

Session variables are accessible like any other variables.

您可以像输入普通变量那样输入伪变量。

You can enter a pseudovariable the same way you would enter a normal variable.

声明游标变量的名称,该变量接收游标输出。

Is the name of a declared cursor variable to receive the cursor output.

可以在脚本使用的变量称为脚本变量。

Variables that are used in scripts are called scripting variables.

为变量指定异常与为变量指定条件一样。

You assign exceptions to a variable just as you assign conditions to a variable.

用图表表示系统各个变量的变化情况

Diagramming the movement of a system's variables

长期以来,科学 方法 一直认为,要想得到不同的结果,就要调整实验变量。

The scientific method has long held that to obtain a different outcome, one should change the experimental variables.

修改此变量对于确定在匹配单击时间签名时可以接受的可变性非常关键。

Modification of this variable is key to determining what amount of variability is acceptable during a click-time signature match.

使用db2set-g命令设置全局注册表变量。

Set the global registry variables using the db2set-g command.

对象有两个方面:成员变量和方法。

Objects have two aspects: member variables and methods.

您可以选择调用栈中的条目,这样可以显示变量被调用时的值。

Entries on the call stack can be selected, causing variables at the time of invocation to be displayed.

Scala没有静态的变量和方法,因此不能将它们直接关联到User类。

Scala does not have static variables and methods, so these cannot be associated directly to the User class.

可以将库添加到项目中,以提供特定于用户目标运行时环境的对象和变量集。

Libraries can be added to a project to provide object and variable sets specific to the users'target runtime environment.

持续性变量的字符串值。

aVariableValue, the string value of the persisted variable.

非阻塞算法简介:介绍如何使用原子变量而不是锁实现并发算法。

An introduction to nonblocking algorithms: Describes how concurrent algorithms can be implemented without locks, using atomic variables.

然后,JSP将会取得匹配变量名的值并显示在UI中。

After that, a JSP will get the values of matching variable names and display them on the UI.

229 评论(8)

有星星的夜

变量 variable (复数 variables)常量 constant (复数 constants)这是编程领域专用术语。

261 评论(13)

程Celeste

通俗的讲就是可以变化的量,在数学里经常用到的x,y。在编程里,也会用到变量。变量可以自定义。

352 评论(14)

相关问答