- 2e3 ==> 2000
- 1.567e4 ==> 15670
Unable to get good results while testing network created using newrb
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I created a network using 'newrb' with a training data. If i revalidate the output with initial values, then it is accurate. But if i tested the network with testing data, i am getting different values like multiplied with 'e' which are not accurate.Is there any solution for this?
0 Kommentare
Antworten (1)
Prateek Rai
am 11 Okt. 2021
To my understanding, you created a network but getting different values (like multiplied with 'e') when testing with test data.
MATLAB uses the 'e' notation to format numeric values and is not using it as a mathematical constant e.
According to notation: aeb ==> a * (10 ^ b).
For example:
And so on...
You can change the output display format to get the desired format using 'format' function.
You can refer to format MathWorks Documentation page to learn more about setting output display format.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Hypothesis Tests finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!