photo

Yeap Jia Wei


2015 年からアクティブ

Followers: 0   Following: 0

統計

  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


Write a function that checks whether an element occurs in a list.
function Checking(x) a=([1,3,5,8,9]); if x==a disp('It is an element') else disp('Not an eleme...

約9年 前 | 3 件の回答 | 0

3

回答

質問


How do i define the recursive function?
The first three Legendre polynomials are P0(x) = 1, P1(x) = x, and P2(x) = (3x2−1)/2. There is a general recurrence formula for ...

約9年 前 | 3 件の回答 | 2

3

回答

質問


How do i generate x/y coordinates to plot points for a race track?
I was given these 4 datas -Time (Seconds) -Ground Speed (km/h) -G Force Long (G) -G Force Lat (G) pls advice?

約9年 前 | 0 件の回答 | 0

0

回答

質問


What is the code to use for format spec in order to get matrix table where each column contain contain 4 data?
if true Data = fopen('Track.txt', 'r'); formatspec = ''; Matrix = [4,inf]; DataInMatrix = fscanf(Data, formatspec, Matri...

約9年 前 | 1 件の回答 | 1

1

回答

質問


How do i export text file into matrix with 4 different data? Pls advice how should the code will be ?
Time (Seconds): 0.00 Ground Speed (km/h): 171.2898382 G Force Long (G): 0.27 G Force Lat (G): 0.1856280 Time (Seconds): 0....

約9年 前 | 1 件の回答 | 0

1

回答

質問


How do i create GUI using projectile motion? The GUI is required to be able to input value of x0,y0,v0x,v0y and also able able user to press'redraw plot' button to update figure for projectile motion
x0=0; y0=10; v0=5; angle0=(pi/3); v0x= v0*cos(pi*(angle0/180)); v0y= v0*sin(pi*(angle0/180)); g=9.81; ...

9年以上 前 | 1 件の回答 | 0

1

回答

質問


How do create a function to plot an output projectile motion wth inputs x0,y0,v0x&v0y? x accleration =0,y accleration,g=9.81. using time vector to denote time and two vectors to denote movement x &y direction?
angle=[0.4, 0.6, pi/4, 1.0, 1.2]; x0=0; y0=0; v0x=0; v0y=0 g=9.81 t=0:.01:500; x=V0x*cos(angle); y=V0y*sin(angle)-9.8*...

9年以上 前 | 1 件の回答 | 1

1

回答