Community Profile

photo

Vedang Mhaske


Last seen: 2 years ago Active since 2021

Statistics

  • Thankful Level 2
  • Thankful Level 1

View badges

Content Feed

View by

Question


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 ago | 2 answers | 0

2

answers

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 1 answer | 0

1

answer