array in power place minus known variable
Ältere Kommentare anzeigen
my equation is I = 12. 6^ (p - 9.5) +2 where p is an array [10: .25: 15]. not understanding why Im getting a syntax error. Is there another way to solve for I? Super new to MATLAB. Thank you.
2 Kommentare
What you posted:
I = 12. 6^ (p-9.50 +2 where p is an array [10: .25: 15)
Is obviously bad syntax with missing parentheses and mismatched brackets. I doubt this is what your actual code is.
Assuming this issue with the parentheses/brackets isn't actually your problem, paste the actual code as it's written. If you don't post the exact thing you're getting an error from, nobody can guess why.
Josue Zamora
am 28 Jun. 2021
Antworten (1)
Use .^ for power of an array of numbers.
p = (10: .25: 15)
I = 12.6 .^ (p-9.50 +2);
plot(p,I)
1 Kommentar
Josue Zamora
am 28 Jun. 2021
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
