Skip to content

Commit e794d4a

Browse files
committed
Links fixed
1 parent 779fd79 commit e794d4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lectures/tools_and_techniques/numerical_linear_algebra.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -984,7 +984,7 @@ instead, and generally rely on it for large matrices and for contiguous chunks o
984984

985985
When the matrices and vectors get large, it can reach a point where it is important to cache the results and reduce allocations. In general, this should only be attempted when the vectors are large and they would otherwise need to be reallocated many times.
986986

987-
One approach is to create a {doc}`custom type<../getting_started/introduction_to_types>` to hold the results, being very careful to ensure that the type is concrete.
987+
One approach is to create a {doc}`custom type<../getting_started_julia/introduction_to_types>` to hold the results, being very careful to ensure that the type is concrete.
988988

989989

990990
```{code-cell} julia
@@ -1049,7 +1049,7 @@ A few points:
10491049

10501050

10511051

1052-
This approach can be very helpful for large matrices and arrays, but should be used judiciously and only after {doc}`profiling<../more_julia/need_for_speed>` .
1052+
This approach can be very helpful for large matrices and arrays, but should be used judiciously and only after {doc}`profiling<../software_engineering/need_for_speed>` .
10531053

10541054

10551055
## Exercises

0 commit comments

Comments
 (0)