Vedang Mhaske
Followers: 0 Following: 0
Feeds
提问
how to plot all points
clc; pstep=20; freq = 20:150; maxfreq = 150; tend = maxfreq - freq; % 130,129,128...0 itime = 0; for i=1:length(freq) ...
3 years 前 | 2 个回答 | 0
2
个回答提问
how to inser loop in equations
clc; pstep = 20; freq = (1:5); itime = freq; for i=1:5 itime(i) = itime(i-1) +(1./ pstep.*freq(i)) end I wanted...
3 years 前 | 1 个回答 | 0
1
个回答提问
how can i use one equation output values in another equation input
pstep = 20; freq = [2 3 4 5 6 7]; itime = (1./(freq.*pstep)); X = (pi.*freq.*itime); accl = (1000.*sin(X)); plot (itime,'-...
3 years 前 | 1 个回答 | 0