Matlab: Generating vectors for altitude and density...?
-
I'm trying to generate vectors for altitude and density from 0-30 km in increments of 1 km using a FOR LOOP. I have density as 'd' and altitude as 'z' and d=1.42 e ^ -0.141z . I am having a difficult time in developing the program and get errors no matter what I do. This is what I've gotten so far, and I know it isn't right, so if someone could point me in the right direction, I'd appreciate it. for k=0:1:30; altitude(k)=altitude; density(k)=1.42*exp(1)exp(-0.141*altit… end I may be way off base, thus the reason behind me asking for help. Thanks!
-
Answer:
You're on the right track. First of all, notice this error your code: altitude(k)=altitude. You're telling MATLAB that it should set an array element equal to an entire array, which it can't do. You probably meant: altitude(k)=k; Next, notice the error in your equation. You should delete these characters: "exp(1)", so that your equation becomes: density(k) = 1.42 * exp( -0.141*altitude(k) ) If you are required to use for-loops for some reason, then your code should be fine after you fix those problems. However, remember that MATLAB can save you time by performing element-by-element math with EVERY array element. For example, here's some streamlined code, to get the answer without using for-loops: z = [0:30] d = 1.42*exp(-0.141*z)
Racceee Girl <333 at Yahoo! Answers Visit the source
Related Q & A:
- How to prove this density result?Best solution by Mathematics
- What is a good way to structure mark-up generating code and avoid the example mess?Best solution by Code Review
- What type of brainstorming most effective in generating new ideas?Best solution by Yahoo! Answers
- At what altitude can you not breath at?Best solution by ChaCha
- How to create vectors?Best solution by eHow old
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.