Current folder window not accessible in Matlab - matlab

I installed Matlab and set the path. After that, only the command window, the command history and the workspace windows were visible. I couldn't find the current folder window anywhere (it did not even appear in the desktop tab). After typing in the command window "filebrowser" an error appears. Suddenly, I get the current folder window but it is not accessibe or there is an error as It doesn't show any of the files and folders on it.
I attach a picture of the Matlab screenshot where you can see the error displayed in the command window and how the current folder window appears.
Any help? What is the problem? How can solve this problem?
Any help is much appreaciated.
Thanks in advance

Consider increasing heap space. The reason for the error is because Java doesn't have enough memory. The error message is however very generic and could be particular to your workflow, but with the command history in the picture, I do not see a problem. Do follow the technical support solution for increasing heap space - http://www.mathworks.com/support/solutions/en/data/1-18I2C/

Related

Visual Studio Code - Open Folder opens in full screen? Is there a way to fix it?

Whenever I tried opening folders or files in VS Code, the explorer (for choosing whichever folder or file) pops up full screen, is there a way to fix this issue?
I've tried uninstalling it to no avail, and I didn't even touch the full screen/zen modes at all, they were all disabled!
Admittedly, this issue doesn't kill me, but I would very much prefer the explorer to not be at full screen, does anyone knows how to fix this issue?

it is prompted that errors exist in required project, but no error is displayed in the taskbar below

As shown in the image below, whenever I run my model, it always tells me that there is an error exists in my model.
enter image description here
But when I turn to the "Problems" window at the bottom of my workspace, it doesn't show any exceptions, and the model also works normally.
enter image description here
I want to know how can I deal with the problem, and is there an error in my model, what may cause such a problem?
These can happen rarely, typically it is not a problem. Try any of these options:
Close the model, then close AnyLogic, then restart and reopen
Delete your Workspace folder (C:/Users/username/.AnyLogicProfessional/Workspace8.8), then restart AnyLogic
Reinstall AnyLogic
Likely the 2nd will help, but try them all

VScode crashed (reason: 'oom', code: '-536870904')

I am trying to open a folder that I opened before, but it crashed.
I can open other projects, and restarting the computer didn't help.
Maybe it's because I had a big file opened (400mb) in this folder, but I cant close this file because the vscode crashing every time when I tried open the workspace..
https://github.com/microsoft/vscode/issues/126127
https://github.com/microsoft/vscode/issues/130375
I had the same problem.
Just delete the folders under %appdata%/code/backups/ and restart VS.
I solved the problem by restarting my computer and then opening VS code from a different folder.
To open large JSON files, I use Dadroit JSON Viewer, thus preventing the problem from repeating itself.
Not worry much about that!, same issue occurred in my pc but there is easy steps to fix this error as following.
solution: Enable "paging files" option OR increase virtual memory.
steps:
1). Right click on "ThisPC" or "MyPC" and go to properties. then go to "Advanced System setting". [ you can also find that using SEARCH button ]
2). then click on settings of Performance block. its open another pop-up window in that ,go to the "advanced" option .
3). you can see the Virtual memory section ,in that click on change button.
4). now first disable the checkbox of "Automatically manage paging file size for all drive".
-> and select the "custom size:"
-> in Initial size(MB): { you need to add the same value as recommended, which is also displayed downside section }
-> in Maximum size(MB): you need to enter the value that you get multiply by 3 of your allocated RAM size.
for example:
your pc's ram is 4 gb then you can enter 4098*3= "12288mb".
then set it , click ok, ok, ok, and then just RESTART your pc. 🥹
hope god will help you.
It's easy than you think, you just need to update your laptop. and try to use Vs code again you will see that it works.

MATLAB Simulink Model Configuration Parameters: Empty Window

I am currently working with Simulink and out of the sudden, I am unable to change the Model Configuration Parameters.
Whether I try to open the window via RightClick->Model Configuration Parameters or via Ctrl+E, in both cases, a blank white window opens.
This problem persists after a reboot and opening/closing MATLAB. Furthermore, it is the case for any model (whether old, new, untouched, example...) on my computer. Yesterday I searched for 45min for possible solutions but could not find any.
Is there some graphics cache or can you think of another way, how I could get the dialog back? A photo is attached:
Screenshot: Configuration Parameters window stays blank
Thanks a lot in advance!
This problem happens in Academic version on Simulink. I have not seen it in Original software.
A solution for your problem can be :
1) clear cache of Simulink by typeing the following command in command window :
rehash toolboxcache
2) reset menu and toolbar of Simulink by the following command :
sl_refresh_customizations
Then close MATLAB by exit command.

Eclipse IDE is taking very long to open an error location

When an error happens while running a RCP-Project, Eclipse shows the location of the error in the Console view. You can click on the filename and Eclipse will immediately opened the file and put the cursor in the correct line.
Since a few days it takes my Eclipse installation very long to do that (several minutes).In the Progress view I see a "Searching" process running and after a long time the file will be opened.
Do you have any ideas what could be the cause of that long duration?
Or how I could find out what Eclipse is doing while taking so long?
===
Update:
Setting up a completely new workspace solved the problem. In the new workspace opening the error location works fine.
I'd still like to know what I could do in such a case to find out what Eclipse is working on (and taking so long for).
I'd imagine that a good jumping off point might be the class org.eclipse.ui.internal.console.FollowHyperlinkAction.
If you set a breakpoint in FollowHyperlinkAction.run(), you could walk down into IHyperlink.linkActivated() and see just what's going on.