Error that X is used but not initalized.
6 views (last 30 days)
Show older comments
My super simply Live script code
"
syms I
O(I)=14.6*10^(-3)*I
"
Output:
Warning: Uninitialized variable 'x' is used.
Bruh, i dont have an X in sight..... Maple>>matlab
0 Comments
Answers (2)
Sibghat
on 4 Mar 2024
One possible explanation to the error message could be that MATLAB is interpreting 'I' as 'x'. You don't need to define O(I) as you would in a symbolic math toolbox. Instead, you can define O as a function of I.
syms I
O(I) = 14.6 * 10^(-3) * I
O = 14.6 * 10^(-3) * I
PS: I read somewhere that MATLAB interprets undefined variable as 'x' by default in symbolic expressions. So, perhaps when you're defining O(I), MATLAB interprets it as O(x). However, I'd need to confirm that to be certain...
0 Comments
See Also
Categories
Find more on Symbolic Math Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!