Transpose 音标拼音: [trænsp'oz]
v . 转置
vt . 调换,颠倒顺序,移项
vi . 进行变换
转置调换,颠倒顺序,移项进行变换
transpose 转置
transpose n 1 :
a matrix formed by interchanging the rows and columns of a given matrix v 1 :
change the order or arrangement of ; "
Dyslexics often transpose letters in a word " [
synonym : {
permute }, {
commute },
{
transpose }]
2 :
transfer from one place or period to another ; "
The ancient Greek story was transplanted into Modern America " [
synonym :
{
transfer }, {
transpose }, {
transplant }]
3 :
cause to change places ; "
interchange this screw for one of a smaller size " [
synonym : {
counterchange }, {
transpose },
{
interchange }]
4 :
transfer a quantity from one side of an equation to the other side reversing its sign ,
in order to maintain equality 5 :
put (
a piece of music )
into another key 6 :
exchange positions without a change in value ; "
These operators commute with each other " [
synonym : {
commute },
{
transpose }]
7 :
change key ; "
Can you transpose this fugue into G major ?"
Transpose \
Trans *
pose "\,
v .
t . [
imp . &
p .
p . {
Transposed };
p .
pr . &
vb .
n . {
Transposing }.] [
F .
transposer ;
pref .
trans - (
L .
trans across )
poser to put .
See {
Pose }.]
[
1913 Webster ]
1 .
To change the place or order of ;
to substitute one for the other of ;
to exchange ,
in respect of position ;
as ,
to transpose letters ,
words ,
or propositions .
[
1913 Webster ]
2 .
To change ;
to transform ;
to invert . [
R .]
[
1913 Webster ]
Things base and vile ,
holding no quantity ,
Love can transpose to form and dignity . --
Shak .
[
1913 Webster ]
3 . (
Alg .)
To bring ,
as any term of an equation ,
from one side over to the other ,
without destroying the equation ;
thus ,
if a b =
c ,
and we make a =
c -
b ,
then b is said to be transposed .
[
1913 Webster ]
4 . (
Gram .)
To change the natural order of ,
as words .
[
1913 Webster ]
5 . (
Mus .)
To change the key of .
[
1913 Webster ]
107 Moby Thesaurus words for "
transpose ":
adapt ,
alternate ,
arrange ,
assign ,
bandy ,
be quits with ,
carry over ,
change ,
communicate ,
commute ,
compensate ,
compose ,
consign ,
convert ,
cooperate ,
counterchange ,
deliver ,
deport ,
diffuse ,
disseminate ,
evert ,
exchange ,
expel ,
export ,
extradite ,
get back at ,
get even with ,
give and take ,
hand forward ,
hand on ,
hand over ,
harmonize ,
impart ,
import ,
instrument ,
instrumentate ,
interchange ,
introvert ,
intussuscept ,
invaginate ,
inverse ,
invert ,
logroll ,
make an adaptation ,
make over ,
melodize ,
metamorphose ,
metastasize ,
metathesize ,
musicalize ,
orchestrate ,
pass ,
pass on ,
pass over ,
pass the buck ,
pay back ,
perfuse ,
permute ,
pronate ,
put ,
put to music ,
reciprocate ,
relay ,
render ,
requite ,
respond ,
resupinate ,
retaliate ,
return ,
return the compliment ,
reverse ,
revert ,
revolve ,
rotate ,
score ,
set ,
set to music ,
spread ,
supinate ,
swap ,
switch ,
trade ,
transcribe ,
transfer ,
transfer property ,
transfigure ,
transfuse ,
translate ,
translocate ,
transmit ,
transmogrify ,
transmute ,
transplace ,
transplant ,
transubstantiate ,
turn ,
turn about ,
turn around ,
turn down ,
turn in ,
turn inside out ,
turn out ,
turn over ,
turn the scale ,
turn the tables ,
turn upside down ,
write
安装中文字典英文字典查询工具!
中文字典英文字典工具:
复制到剪贴板
英文字典中文字典相关资料:
PyTorch 两大转置函数 transpose () 和 permute . . . - CSDN博客 文章浏览阅读10w+次,点赞129次,收藏197次。 本文深入探讨PyTorch中的两种转置方法:transpose ()和permute ()。 详细对比两者在操作维度、合法性和内存连续性上的差异,适用于不同维度数据的精确控制。
关于Numpy转置(T、transpose[三维、四维. . . 高维数组])的理解 转置有三种方式, transpose方法、T属性以及swapaxes方法。 看了很多关于transpose高维数组的转置,我觉得总缺点什么,于是试着自己总结加上一些自己的理解,汇成了如下内容: 一、先验知识1 一维(序列)转置是其…
图解PyTorch中的Transpose操作 - 技术栈 在PyTorch中,我们时常会对张量进行转置操作。 若张量是 二维 的,则非常 容易理解 。 若张量 维度更高 ,则会 令人摸不到头脑。 高维张量究竟是怎么转置的? 简单来说,就是将参与转置的维度抽出来,将内侧的子张量视为一个元素;这样,抽出来的两个维度便是正常的二维矩阵,此时便容易理解了。 转置完成后,恢复原样即可。 这么说是比较抽象的,一图解百忧! : ) 请看下面的图! clip实验 TRAE Friends@济南第4次活动:100+极客集结,2小时极限编程燃爆全场! ProofShot实战:给AI编码助手添加可视化验证,提升前端开发效率3倍 一场直播涨粉 2 万的背后!
Python transpose函数 - 极客教程 本文将详细介绍transpose函数的使用方法和相关实例。 transpose函数是Numpy库中的一个函数,用于在多维数组之间交换维度和轴的顺序。 它可以根据用户的需求对数据进行重排,使得数据在不同维度和轴之间进行转置。 transpose函数的基本语法如下所示: 其中, a 是输入的数组, axes 是可选参数,用于指定交换维度的顺序。 如果不指定 axes,则会默认交换所有维度的顺序。 为了更好地理解transpose函数的用法,接下来会给出一些具体的实例。 首先,我们来看一个简单的例子,将一个二维数组进行转置。 假设我们有一个二维数组 arr,如下所示: 使用transpose函数对数组进行转置: 运行结果如下所示: 可以看到,原先的二维数组的行变成了列,列变成了行,完成了转置操作。
Transpose - Wikipedia In linear algebra, transposition is an operation that flips a matrix over its diagonal; that is, transposition switches the row and column indices of the matrix A to produce another matrix, called the transpose of A and often denoted AT (among other notations) [1]
TRANSPOSE函数_百度百科 TRANSPOSE函数返回的是与源数据动态链接的数组,源数据更改时结果会自动更新。 目标输出区域必须是空白区域,不能包含已有数据,否则会导致错误。 源数据区域中的空值或错误值会被如实反映到转置结果中。
NumPy transpose () - 程序教程 NumPy transpose () transpose() 方法将给定数组的轴进行交换,这与数学中的矩阵转置类似。 对于具有多于两个维度的数组, transpose() 会根据给定的参数来排列轴。 示例
Python 中 Transpose 的全面解析 — geek-blogs. com 在 Python 数据处理和科学计算中,`transpose` 是一个十分重要的操作。 它通常用于交换数组或矩阵的维度,在处理多维数据时能极大地提高数据处理的灵活性和效率。
详细解读numpy中transpose ()函数(附带实例帮助理解)_x. transpose-CSDN博客 本文详细解析了Numpy库中数组转置的概念,通过二维和三维数组的例子,阐述了transpose ()函数的工作原理。 在二维数组中,transpose ()函数实现的是行列索引的互换。 在三维数组中,理解下标顺序为 [z, y, x]至关重要。 通过不同的transpose参数,可以实现不同轴的转置。 总结强调了正确理解数组下标顺序对于掌握transpose ()函数的重要性。
TRANSPOSE中文 (简体)翻译:剑桥词典 - Cambridge Dictionary TRANSPOSE翻译:使换位置;使互换位置, 使变调;使移调。 了解更多。