1153万例文収録!

「浮動小数点表現」に関連した英語例文の一覧と使い方 - Weblio英語例文検索


小窓モード

プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > 浮動小数点表現の意味・解説 > 浮動小数点表現に関連した英語例文

セーフサーチ:オン

不適切な検索結果を除外する

不適切な検索結果を除外しない

セーフサーチについて

浮動小数点表現の部分一致の例文一覧と使い方

該当件数 : 38



例文

指数表現は, 浮動小数点表現法と似ている例文帳に追加

Scientific notation is similar to the floating-point notation  - コンピューター用語辞典

マクロは任意の浮動小数点表現を引き数としてとることができる。例文帳に追加

The macro takes any floating-point expression as argument.  - JM

は、システムの浮動小数点表現で使用されている基数を表す。例文帳に追加

indicates the radix used for the system's floating-point representation.  - JM

なぜなら、IEEE 754 の浮動小数点表現では 0 も符号を持つからである。例文帳に追加

because IEEE 754 floating point allows zero to be signed.  - JM

例文

この PyObject のサブタイプは Python 浮動小数点型オブジェクトを表現します。例文帳に追加

This subtype of PyObject represents a Python floating pointobject.  - Python


例文

この PyTypeObject のインスタンスは Python 浮動小数点型を表現します。例文帳に追加

This instance of PyTypeObject represents the Python floating point type. - Python

これらの関数は、xの浮動小数点の内部表現から指数部を抽出し、浮動小数点数値として返す。例文帳に追加

These functions extract the exponent from the internal floating-point representation of x and return it as a floating-point value.  - JM

浮動小数点表現プログラムにおける固定小数点表現化すべき数要素に対する属性値を設定するための手間を低減させることのできる浮動小数点表現プログラムの固定小数点表現化支援装置及び支援プログラムを提供することである。例文帳に追加

To provide a device for supporting the conversion of a floating point representation program to fixed point representation and a support program thereof for reducing the labor of setting attribute values to numerical elements to be converted to fixed point representation in a floating point representation program. - 特許庁

関数群は、y に向かう方向で x のすぐ次の浮動小数点表現を返す。例文帳に追加

functions return the next representable floating-point value following x in the direction of y .  - JM

例文

yがxより小さい場合、yより小さい最大の浮動小数点表現の値を返す。例文帳に追加

If y is less than x , these functions will return the largest representable number less than y .  - JM

例文

成功すると、これらの関数は y に向かう方向で x のすぐ次の浮動小数点表現を返す。例文帳に追加

On success, these functions return the next representable floating-point value after x in the direction of y .  - JM

この型は計算機レベルで倍精度とされている浮動小数点数を表現します。例文帳に追加

These represent machine-level double precision floating point numbers.  - Python

各々の値は Python が時刻の表現に使っている標準の浮動小数点型です。例文帳に追加

The values are in the standard floating point format used for times throughoutPython. - Python

これは浮動小数点型の内部表現を可搬性を保ったまま "分解する (pick apart)" するためです。例文帳に追加

This is used to "pick apart" the internal representation of a float in a portable way. - Python

対数演算装置10は、浮動小数点データで表現される値の対数を求める。例文帳に追加

This logarithmic arithmetic device 10 finds the logarithm of a value expressed by floating decimal point data. - 特許庁

overflow例外は、結果が浮動小数点数値で表記されなければならないのに、その絶対値が表現可能な浮動小数点数の (有限の) 最大値よりも(ずっと) 大きくなってしまうような場合に起こる。例文帳に追加

The overflow exception occurs when a result has to be represented as a floating-point number, but has (much) larger absolute value than the largest (finite) floating-point number that is representable.  - JM

は、y と同じ符号の結果を返し、浮動小数点の引数に対して厳密な解を出せないことがあります。 例えば、 fmod(-1e-100, 1e100) は -1e-100 ですが、Python の-1e-100 % 1e100 は 1e100-1e-100 になり、浮動小数点型で厳密に表現できず、ややこしいことに1e100 に丸められます。例文帳に追加

returns a result with the sign ofy instead, and may not be exactly computable for float arguments.For example, fmod(-1e-100, 1e100) is -1e-100, but the result of Python's -1e-100 % 1e100 is 1e100-1e-100, which cannot be represented exactly as a float, and rounds to the surprising1e100. - Python

固定精度浮動小数点数の組を多倍長や可変長の1つの浮動小数点表現形式に効率的に変換する際に量子化演算を効率的に実行する演算方式を提供する。例文帳に追加

To provide an arithmetic system for efficiently performing a quantization arithmetic when fixed-precision floating-point number groups are converted into single floating-point representation form of multiple-precision or variable-precision in an efficient way. - 特許庁

丸めモードは、結果が仮数部だけで正確に表現できない際に、浮動小数点操作の結果をどのように扱うかを決めるものである。例文帳に追加

The rounding mode determines how the result of floating-point operations is treated when the result cannot be exactly represented in the signifcand.  - JM

浮動小数点のオーバーフローは、結果が有限だが、大き過ぎて結果を返す型では表現できない場合に発生する。例文帳に追加

A floating result overflows if the result is finite, but is too large to represented in the result type.  - JM

浮動小数点のアンダーフローは、結果が小さ過ぎて、結果を返す型では表現できない場合に発生する。例文帳に追加

A floating result underflows if the result is too small to be represented in the result type. If an underflow occurs, a mathematical function typically returns 0.  - JM

この型は、計算機レベルで倍精度とされている浮動小数点を 2 つ一組にして複素数を表現します。例文帳に追加

These represent complex numbers as a pair of machine-level double precision floating point numbers. - Python

正規化浮動小数点表現に目が慣れてしまうと、以下の計算でゼロに等しい値が返っているとは即座に分かりません:例文帳に追加

For an eye accustomed to normalized floating point representations, itis not immediately obvious that the following calculation returns a value equal to zero: - Python

多くのデスクリプタは、単に対応するPython の型で表現されています。 例えば、OSA 中の typeText は Python 文字列型で、typeFloat は 浮動小数点型になる、といった具合です。例文帳に追加

For many descriptors the Python representation is simply the corresponding Python type: typeText in OSA is a Python string,typeFloat is a float, etc. - Python

このモジュールでは、基本的な値 (文字、整数、浮動小数点数) のアレイ(array、配列) を効率よく表現できるオブジェクト型を定義しています。例文帳に追加

This module defines an object type which can efficiently represent an array of basic values: characters, integers, floating point numbers. - Python

明示的な注記のない限り、戻り値は全て浮動小数点数になります。 以下は整数論および数表現にまつわる関数です:例文帳に追加

Exceptwhen explicitly noted otherwise, all return values are floats.Number-theoretic and representation functions:  - Python

ビット長削減部11は、浮動小数点数で表現された演算対象値のビット長を削減して演算部15に出力する。例文帳に追加

The bit length reducing unit 11 reduces the bit length of an operand expressed by a floating-point number and outputs the operand to a computing unit 15. - 特許庁

underflow例外は、結果が浮動小数点数値で表記されなければならないのに、その絶対値が正の正規化浮動小数点数の最小値よりも小さくなってしまう(そして 非正規化数で表現した場合に非常に精度を失ってしまう)ような場合に起こる。例文帳に追加

The underflow exception occurs when a result has to be represented as a floating-point number, but has smaller absolute value than the smallest positive normalized floating-point number (and would lose much accuracy when represented as a denormalized number).  - JM

全ての実数を 2 を基数として表現するのは不可能なため、二進の浮動小数点数は``近似値'' しか表現できません。 このため、戻り値も近似になります。例文帳に追加

The return value is ``approximate'' because binary floating point numbers are approximate; it is not possible to represent all real numbers in base two. - Python

オーディオコーディングシステムにおいて、正規化された浮動小数点表現された数値としてオーディオエンコーディング伝送器がエンコードされたスペクトル成分を表現する。例文帳に追加

In an audio coding system, an audio encoding transmitter expresses an encoded spectrum component as a normalized numerical value expressed by a floating point. - 特許庁

RGBの各色の明度を、仮数部6ビット、指数部log_2(24)ビット(約4.585ビット)の浮動小数点形式で表現し、log_2(24)ビットの指数部では、m*2^n〜m*2^n+23の範囲を表現できるようにする。例文帳に追加

Brightness of each color of RGB is represented in a floating-point format of a mantissa part of 6 bits and an exponent part of log_2(24) bits (about 4,585 bits), and a range of m*2^n-m*2^n+23 can be represented in the exponent part of log_2(24) bits. - 特許庁

1.1 のような数は、2 進数の浮動小数点型では正しく表現できません。 エンドユーザは普通、2 進数における1.1 の近似値が1.1000000000000001 だからといって、そのように表示してほしいとは考えないものです。例文帳に追加

In contrast, numbers like1.1 do not have an exact representation in binary floating point.End users typically would not expect 1.1 to display as1.1000000000000001 as it does with binary floating point.  - Python

ハードウェアによる 2 進浮動小数点表現と違い、decimal モジュールでは計算精度をユーザが指定できます(デフォルトでは 28 桁です)。 この桁数はほとんどの問題解決に十分な大きさです:例文帳に追加

Unlike hardware based binary floating point, the decimal module has a user settable precision (defaulting to 28 places) which can be as large as needed for a given problem: - Python

この伝送器は、どこで浮動小数点表現が正規化を失ったのかを特定するために、部分的なデコーディング処理における算術演算の効果を分析することで第2の制御パラメータを決定する。例文帳に追加

The transmitter decides the second control parameter by analyzing the effect of arithmetic computation in partial decoding processing to specify where the floating point expression loses normalization. - 特許庁

本発明の演算方法は、浮動小数点方式で表現された数値から構成される数列の自乗和を含む演算に係るオーバーフローを予測する演算方法である。例文帳に追加

This operation method is an operation method for predicting overflow related to an operation including sum of squares of a numeric sequence consisting of numerical values expressed in the floating-point form. - 特許庁

ビット長増加部12は、演算部15から入力される浮動小数点数で表現された演算結果値のビット長を増加させて、元のビット長に戻す。例文帳に追加

The bit length increasing unit 12 increases the bit length of the computed result value represented by a floating-point number inputted from the computing unit 15, and restores the bit length to the original length. - 特許庁

複数の高速フーリエ変換を行うFFT部5,8と複数の逆高速フーリエ変換を行うIFFT部9,12とが直列に接続されており、高速フーリエ変換または逆高速フーリエ変換の演算結果は、複数の固定小数点データとそれらのデータに共通する1つの指数とで表現するブロック浮動小数点形式で出力される。例文帳に追加

A plurality of FFT parts 5, 8 for performing fast Fourier transform, and a plurality of IFFT parts 9, 12 for performing inverse fast Fourier transform are connected in series, and operation results of fast Fourier transform or inverse fast Fourier transform are outputted in a block floating point format which is expressed by a plurality of fixed point data and one exponent which is common to the data. - 特許庁

例文

第一のデータと第二のデータとの積へ第三のデータを加算する積和演算を実行するために、浮動小数点乗算器114に第一のデータと第二のデータとの乗算を行なわせ、その乗算結果における仮数部を表現するビット列を該仮数部における上位の桁を表現するものと該仮数部における下位の桁を表現するものとに分割する。例文帳に追加

For performing a product sum arithmetic operation for adding third data to the product of first data and second data, the first data and the second data are multiplied by a floating point multiplier 114, and a binary digit string for expressing a mantissa part in a multiplication result is divided into a string for expressing a superordinate digit in the mantissa part and a string for expressing a subordinate digit in the mantissa part. - 特許庁

索引トップ用語の索引



  
Copyright © Japan Patent office. All Rights Reserved.
  
コンピューター用語辞典
Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved.
  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。
  
Copyright 2001-2004 Python Software Foundation.All rights reserved.
Copyright 2000 BeOpen.com.All rights reserved.
Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved.
Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved.
  
Copyright (c) 2001 Robert Kiesling. Copyright (c) 2002, 2003 David Merrill.
The contents of this document are licensed under the GNU Free Documentation License.
Copyright (C) 1999 JM Project All rights reserved.
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する
英→日 日→英
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する

©2024 GRAS Group, Inc.RSS