■TByte(テラバイト)からGByte(ギガバイト)へ変換

 TByteからGByteへ変換するには1024を乗算すればよい。

1 TByte = 1024 GByte

function TByte_to_GByte(n)
{
    return n * 1024;
}

[目次に戻る]