{ "cells": [ { "cell_type": "code", "execution_count": 4, "id": "f6e13c4a-8200-4c09-b402-025fae57236f", "metadata": {}, "outputs": [ { "ename": "LoadError", "evalue": "ArgumentError: Package FixedSizeArrays not found in current path.\n- Run `import Pkg; Pkg.add(\"FixedSizeArrays\")` to install the FixedSizeArrays package.", "output_type": "error", "traceback": [ "ArgumentError: Package FixedSizeArrays not found in current path.\n- Run `import Pkg; Pkg.add(\"FixedSizeArrays\")` to install the FixedSizeArrays package.", "" ] } ], "source": [ "using FixedSizeArrays" ] }, { "cell_type": "code", "execution_count": 3, "id": "251cbbae-41f5-4ef9-b16b-4fd63a07a126", "metadata": {}, "outputs": [ { "ename": "LoadError", "evalue": "UndefVarError: `FixedSizeArray` not defined in `Main`\nSuggestion: check for spelling errors or missing imports.", "output_type": "error", "traceback": [ "UndefVarError: `FixedSizeArray` not defined in `Main`\nSuggestion: check for spelling errors or missing imports.", "", "Stacktrace:", " [1] top-level scope", " @ In[3]:1" ] } ], "source": [ "struct Ground \n", " nurtrient::FixedSizeArray{Float32}(undef, (1000, 1000, 50))\n", "end " ] }, { "cell_type": "code", "execution_count": null, "id": "83f4cd41-3b52-43ff-a536-3381d5fe1faa", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Julia 1.11.3", "language": "julia", "name": "julia-1.11" }, "language_info": { "file_extension": ".jl", "mimetype": "application/julia", "name": "julia", "version": "1.11.3" } }, "nbformat": 4, "nbformat_minor": 5 }