problem of solving the PDE
조회 수: 1 (최근 30일)
이전 댓글 표시
i define the function, boundary and initial condition of the heat equation in a standard form ,when i try to plot the solution with x direction, it gives me an error that x =linspace () is not inside any function. Do i need to create a function file for each function in order to put the x range inside?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1646841/image.png)
댓글 수: 0
답변 (1개)
VBBV
2024년 3월 20일
편집: VBBV
2024년 3월 20일
Cut all the lines from 1 till 16 and place it after line 26.
Function declarations must be done at the end of the code in your script file (with properly termination using keyword end ... in your case its done correctly)
댓글 수: 5
VBBV
2024년 3월 21일
편집: VBBV
2024년 3월 21일
@suen If your code begins with keyword function in line 1 , then by MATLAB convention the file is considered as function file for which it expects inputs and/or outputs. Since the inputs to function are present later part of your code and defined outside the function body, MATLAB throws such error.
Note that each function must end using keyword end except when there is only one function defined inside the script file.
참고 항목
카테고리
Help Center 및 File Exchange에서 Geometry and Mesh에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!