How do I make a specific range of numbers and increment?
조회 수: 55 (최근 30일)
이전 댓글 표시
How do i make a specific range of numbers and increment.
Given:
k=k0e^(-Q/R*T)
Q = 8000 cal/mol
R = 1.987 cal/mol K
kЈ = 1200 min-1
The values of k for temperatures from 100K to 500K, in increments of 50.
댓글 수: 0
답변 (2개)
John D'Errico
2022년 12월 8일
편집: John D'Errico
2022년 12월 8일
What does any of the other information have to do with anything? That is, we have no interest in the values of Q, R, or kJ, or an equation that relates all of this to the variable T.
All that matters is k.
k = 1e5:50:5e5;
I would strongly suggest that you go back to basics. Go through one of the tutorials to be found on MATLAB, where one of the important things you might learn is in how to use tools like the colon operator.
Anyway, why did I say what I did about the other variables Q, R, kJ? Because I think you are letting that confuse and distract you. When you have a problem, solve ONE part at a time. But don't focus on the distractions. Solve one piece of the puzzle at a time.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!