Index in position 1 exceeds array bounds. Index must not exceed 1.

63 views (last 30 days)
Need some help on the coding. Please and Thanks!
  3 Comments

Sign in to comment.

Answers (1)

per isakson
per isakson on 17 Jan 2022
Edited: per isakson on 17 Jan 2022
What is your intention with this assignment?
%% Initial condition
T(:,:) = 293; % initial temperature (K)
Matlab makes T a scalar.
In the first iteration
Told = T;
assigns this scalar to Told
In the first iteration the failing statement
T(j,k)=(Told(j,k)*(1-r1-r2)+dt*D...
references Told(2,2), which throws the error.
  1 Comment
Sin Wei Phang
Sin Wei Phang on 17 Jan 2022
I need to show contour plot of temperature distribution and crater depth in Z direction every 10% of the pulse duration.

Sign in to comment.

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Products


Release

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!