{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "9e1c1277-687d-40ee-b38b-8145d6aaeb3d", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0.0:0.5263157894736842:10.0" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "range(0, 10, length=20)" ] }, { "cell_type": "code", "execution_count": 2, "id": "a248529c-19b3-4e1e-a080-767ecb82f8ba", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "5-element Vector{Float64}:\n", " 0.0\n", " 2.5\n", " 5.0\n", " 7.5\n", " 10.0" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "collect(range(0,10,length=5))" ] }, { "cell_type": "code", "execution_count": 4, "id": "96e072b3-9d1b-4daf-95a0-0aa32244958e", "metadata": {}, "outputs": [ { "ename": "LoadError", "evalue": "UndefVarError: `meshgrid` not defined", "output_type": "error", "traceback": [ "UndefVarError: `meshgrid` not defined", "", "Stacktrace:", " [1] top-level scope", " @ In[4]:1" ] } ], "source": [ "meshgrid()" ] }, { "cell_type": "code", "execution_count": null, "id": "a2f575e2-49e1-479b-bcd0-3132f86da488", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Julia 1.10.4", "language": "julia", "name": "julia-1.10" }, "language_info": { "file_extension": ".jl", "mimetype": "application/julia", "name": "julia", "version": "1.10.4" } }, "nbformat": 4, "nbformat_minor": 5 }