Error when trying to view a variable
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
David Prete
le 10 Nov 2020
Commenté : David Prete
le 11 Nov 2020
Ever since I downloaded the newest version of MATLAB whenever I open a variable to view it I get and error. I've attached an image of the error message. It says Conversion to logical from cell is not possible. flip 37. This message appears no matter what kind of varibale try to open ( array, struct, cell, logical, etc) it always pops up. Also seems to pop up if I run code but my variable window is open, even thoguh the code I'm running has nothing to do with the varibles I am currently viewing. Does anyone else have this issue? Are there any solutios to this issue. Below is my version information and operating system
MATLAB Version: 9.8.0.1451342 (R2020a) Update 5
MATLAB License Number: 40924515
Operating System: Microsoft Windows 10 Home Version 10.0 (Build 18363)
Java Version: Java 1.8.0_202-b08 with Oracle Corporation Java HotSpot(TM) 64-Bit Server VM mixed model
1 commentaire
Réponse acceptée
Cam Salzberger
le 10 Nov 2020
Hey David,
I have a suspicion that there is either a variable in your workspace, or a function/script in your current folder/path that is messing it up somehow. Try all of these things at once to eliminate the possibilities:
clear all
cd(matlabroot)
restoredefaultpath
rehash toolboxcache
x = 1;
Now see if you can view "x" in your variable viewer. If it works, you can restart MATLAB to get your path back the way it was (since you didn't do "savepath"), and then experiment to determine which variable/file was the cause.
-Cam
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!