Feeds
提问
How to print the intersection between two functions?
Here is my code: % Projectile motion z0=0;h0=0; tmax=3; t=[0:0.1:1]*tmax; pr_xdot = @(t,x) ([x(2); -9.81; x(4); 0]); [tt,zz]...
7 years 前 | 1 个回答 | 0
1
个回答提问
Finding pythagoras triples when only c is known
Finding a and b when c is known Here's what I have str='a=%4i b=%4i c=%4i'; for c=137 for a=1:200 for b=1:200 ...
7 years 前 | 4 个回答 | 0
