배열의 원소를 n에 의해 지정된 횟수와 방향으로 회전합니다.

커넥터 팬은 이 다형성 함수의 기본 데이터 타입을 디스플레이합니다.


icon

입력/출력

  • ci32.png n

    n은 반드시 숫자 데이터 타입이어야 합니다.

    The function coerces n to a 32-bit integer if you wire another representation to it.
  • c1ddbl.png 배열

    배열은 모든 타입의 1D 배열이 될 수 있습니다.

  • i1ddbl.png 배열(마지막 n 원소가 처음으로)

    배열(마지막 n 원소가 처음으로)은 출력 배열입니다.

    For example, if n is 1, the input 배열[0] becomes output array[1], input 배열[1] becomes output array[2], and so on, and input 배열[m–1] becomes output array[0], where m is the number of elements in the array. If n is –2, input 배열[0] becomes output array[m–2], input 배열[1] becomes output array[m–1], and so on, and input 배열[m–1] becomes output array[m–3], where m is the number of elements in the array.
  • FPGA 모듈 세부사항

    다음 세부사항은 FPGA VI에서 이 객체를 사용할 때 적용됩니다.

    노트 다음 세부사항은 각 LabVIEW FPGA Module 버전에 따라 변경될 수 있습니다.
    Single-Cycle Timed 루프 지원되지 않음.
    Usage 상수를n입력에 직접 연결하는 경우, 이 함수는 순수한 연결 작업입니다. 그렇지 않은 경우, 이 함수는 각 클럭 사이클마다 원소를 한 위치씩 회전하는 반복 알고리즘을 구현합니다.
    타이밍 n이 상수인 경우, 이 작업에는 클럭 사이클이 필요하지 않습니다. 그렇지 않은 경우, 이 작업은 실행하는데n클럭 사이클과 오버헤드의 3 클럭 사이클이 필요합니다.
    리소스 상수를n입력에 직접 연결하는 경우, 이 작업은 FPGA 리소스를 사용하지 않습니다. 그렇지 않은 경우, 이 작업은 배열의 크기에 비례하여 FPGA 리소스를 소비합니다.