Filter löschen
Filter löschen

while implementing the above code, getting error at line 8 & 10 = error is the value assigned to variable might be unsed?

1 Ansicht (letzte 30 Tage)
while implementing the above code, getting error at line 8 & 10 = error is the value assigned to variable might be unsed. plz give a solution to this problem

Antworten (1)

DGM
DGM am 8 Mai 2021
3 things:
1: It's not an error, just a warning for guidance. It doesn't prevent the code from being run.
2: It's correct. ep and mu are assigned a value, and then the function exits. The values are never used, nor are any of the output arguments given a value. gather, tout, etc need to be assigned a value. I'm assuming that once this function is done being written, the values assigned to ep and mu will be used to calculate those output arguments. At that point, all the squiggly lines will be gone.
3: In the future, please just paste the code in a formatted block in your post. That way people can run it if they need to, or they can copy/paste sections of it for explanation.

Kategorien

Mehr zu Code Generation finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by