フィルターのクリア

Error that X is used but not initalized.

4 ビュー (過去 30 日間)
Zayin Jarrez
Zayin Jarrez 2024 年 3 月 4 日
回答済み: Sibghat 2024 年 3 月 4 日
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

回答 (2 件)

VBBV
VBBV 2024 年 3 月 4 日
syms I
O = 14.6*10^(-3)*I % define this way
O = 
O(I) = 14.6*10^(-3)*I
Warning: Uninitialized variable 'x' is used.
O(I) = 
  1 件のコメント
VBBV
VBBV 2024 年 3 月 4 日
Possibly due to assigning symoblic variables as function of implicitly defined variables

サインインしてコメントする。


Sibghat
Sibghat 2024 年 3 月 4 日
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
Warning: Uninitialized variable 'x' is used.
O(I) = 
O = 14.6 * 10^(-3) * I
O = 
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...

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

タグ

製品


リリース

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by