简体   繁体   中英

Matlab - equation solve

Welcome ! I have a problem I want to solve in matlab this equation:

[(1,78e14 + 9,76^11)/128e6] +5e-5 

Problem is that i'm getting error and i don't know how to type it properly

Change your [] to () because its interpreted as vector, also change the ',' to '.':

>> ((1.78e14 + 9.76^11)/128e6) +5e-5
ans =    1.3912e+06

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM