Strange Behavior of Version
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello,
I am using matlab for study purpose. I have standalone version installed in my desktop, and when I am out of home, I use the online version. Today I experienced a peculiar error which is "computer('arch')" is showing my computer version as Linux 64 bit while I am having Win 10 64 bit installed in my laptop. I couldn't find any documentation on such a problem. Hence I am requesting the exparts if there is something can be done to resolve it. Thank you in advance.
-- Ritankar
output: [str,maxsize,endian] = computer
str =
'GLNXA64'
maxsize =
2.8147e+14
endian =
'L'
ispc
ans =
logical
0
isunix
ans =
logical
1
댓글 수: 0
채택된 답변
Steven Lord
2021년 1월 2일
Are you running that in MATLAB Online or in the version you have installed locally on your Windows machine? When I run in MATLAB Online or through MATLAB Answers computer correctly indicates MATLAB is running on a Linux machine.
[str,maxsize,endian] = computer
댓글 수: 3
Walter Roberson
2021년 1월 3일
I see in the documentation that protected models permitted different kinds of execution effective in different releases. I see that execution in Normal simulation mode (no code generation required) became available for models created in R2018b or later. The implication would be that any model older than that would have been protected to work only through code generation, and a code-generated version would be platform specific I suspect. This does not promise that new enough versions that permit simulation are not platform specific: I have no information about that at the moment... but versions older than do not appear to have any chance of platform independence if I am reading the document correctly.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!