开始使用免费开始使用

Array operating fluency

Operating on arrays is an integral part of working with data. Most of the time you are working with data in Julia, you will be working with arrays, so it is essential to know how to operate on this data type. In this exercise, you will build your array fluency.

Two 1D arrays, x and y, are available in your environment.

本练习是课程的一部分

Introduction to Julia

查看课程

交互式实操练习

通过完成这段示例代码来试试这个练习。

# Multiply x by 3
a = ____
编辑并运行代码