Community Profile

photo

Yeap Jia Wei


Actif depuis 2015

Followers: 0   Following: 0

Statistiques

  • Thankful Level 1

Afficher les badges

Feeds

Afficher par

Question


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...

presque 9 ans il y a | 3 réponses | 0

3

réponses

Question


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 ...

presque 9 ans il y a | 3 réponses | 2

3

réponses

Question


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?

presque 9 ans il y a | 1 réponse | 0

0

réponse

Question


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...

presque 9 ans il y a | 1 réponse | 1

1

réponse

Question


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....

presque 9 ans il y a | 1 réponse | 0

1

réponse

Question


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; ...

presque 9 ans il y a | 1 réponse | 0

1

réponse

Question


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*...

presque 9 ans il y a | 1 réponse | 1

1

réponse