Community Profile

photo

Damian Sztangierski


Last seen: 3 years 前 自 2019 起处于活动状态

Followers: 0   Following: 0

统计数据

Feeds

排序方式:

提问


How can I force a for loop to finish all iterations without using 'end'? I want my for loop to finish before moving onto line 11 otherwise some values will be missing.
h = 0.01; %step size A = 8000/11; %constant value T(1)=80; %initial temperature x(1)=0; % length along rod, 0cm to 4cm promp...

5 years 前 | 0 个回答 | 0

0

个回答

提问


How do I repeat an iteration with newly generated initial conditions if a statement is false? I wrote code that gives me values i need, however if the difference between the values is not smaller than 0.5, I need the loop to restart.
I need help putting all of this into one big loop Guess initial value My code uses the guess to generate multiple T and Z va...

5 years 前 | 0 个回答 | 0

0

个回答

提问


How do I put the code below into one big loop so I do not have to copy and paste no more?
h = 0.01; A = 8000/11; T(1)=80; x(1)=0; prompt = ('Guess initial Z value'); Z(1) = input(prompt); for i=2:5 x(i)...

5 years 前 | 1 个回答 | 0

1

个回答