mindspore.ops.randn_like
=========================

.. image:: https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/website-images/r2.3.1/resource/_static/logo_source.svg
    :target: https://gitee.com/mindspore/mindspore/blob/r2.3.1/docs/api/api_python/ops/mindspore.ops.func_randn_like.rst
    :alt: 查看源文件


.. py:function:: mindspore.ops.randn_like(input, seed=None, *, dtype=None)

    返回一个Tensor,shape和dtype由输入决定,其元素为服从标准正态分布的数字。

    参数:
        - **input** (Tensor) - 输入的Tensor,用来决定输出Tensor的shape和默认的dtype。
        - **seed** (int,可选) - 随机种子,必须大于或等于0。默认值: ``None`` ,值将取 ``0`` 。

    关键字参数:
        - **dtype** (:class:`mindspore.dtype`,可选) - 需求的输出Tensor的dtype,必须是float类型。如果是 ``None`` ,则使用 ``mindspore.float32`` 。默认值: ``None`` 。

    返回:
        Tensor,shape和dtype由输入决定其元素为服从标准正态分布的数字。

    异常:
        - **TypeError** - 如果 `seed` 不是非负整数。
        - **ValueError** - 如果 `dtype` 不是一个 `mstype.float_type` 类型。