photo

Chukwunememma Uponi


Last seen: plus de 3 ans il y a Actif depuis 2019

Followers: 0   Following: 0

Statistiques

MATLAB Answers

6 Questions
0 Réponses

RANG
162 385
of 301 298

RÉPUTATION
0

CONTRIBUTIONS
6 Questions
0 Réponses

ACCEPTATION DE VOS RÉPONSES
100.0%

VOTES REÇUS
0

RANG
 of 21 225

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 173 851

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Thankful Level 3

Afficher les badges

Feeds

Afficher par

Question


Please help: How to do a time step?
Here is my code, i need the final velocity from u_1 to be the initial velocity for u_2. How do i do this please? close all c...

plus de 6 ans il y a | 1 réponse | 0

1

réponse

Question


i need the second plot to start from where the last point on the first plot left off. The graph is meant to be continuous across all three stages not broken up. Help please?
close all clc; %define variables mi_1=2290000; mf_1=130000; tb_1=165; Isp_1=263; mi_2=496200; mf_2=40100; tb_2=360; ...

plus de 6 ans il y a | 1 réponse | 0

1

réponse

Question


I am trying to combine plots to one graph for u, p and a. So i need three separate graphs in total but im having trouble combining the plots needed for each graph.
i am trying to make three separate graphs for u, p and a against t but im having trouble combining the graphs to make one figure...

plus de 6 ans il y a | 1 réponse | 0

1

réponse

Question


how do i dfferentiate u with respect to t?
mi=2290000; mf=130000; tb=165; t=linspace(0,165); mr=mi-((mi-mf)*(t/tb)); hold all g = 9.81; Isp=263; u=g.*(Isp.*log(mi...

plus de 6 ans il y a | 1 réponse | 0

1

réponse

Question


Array indices must be positive integers or logical values. Error in (line 8) mr(t)=mi-((mi-mf)*(t./tb));
mi=2290000 mf=130000 tb=165 t= linspace(6.5,165,1); mr(t)=mi-((mi-mf)*(t./tb)); mr=[] for t=6.5:165; mr(t)=mi-((mi-m...

plus de 6 ans il y a | 3 réponses | 0

3

réponses

Question


How do integrate this function over t=0 to t=165?
mi=2290000; mf=130000; tb=165; t=linspace(6.5,165); mr=mi-((mi-mf)*(t/tb)) plot(t,mr, 'blue') hold all g = 9....

plus de 6 ans il y a | 1 réponse | 0

1

réponse