(translator=anticat, ChineseSource=anticat-20020704-12\munlock.html, EnglishSource=c:\matlabr12\help\techdoc\ref\munlock.html)

MATLAB Function Reference

   

munlock

允許清除M檔案

Syntax

munlock
munlock fun
munlock('fun')

Description

munlock 解除目前記憶體中正在執行的M檔案的鎖定,以使之後的 clear 能夠移除之。

munlock fun 從記憶體中解除指定檔案fun 的鎖定。 By default, M-files are unlocked so that changes to the M-file are picked up. 只有在M檔案被 mlock.鎖定時才需要解除鎖定。

munlock('fun') munlock.的函數型態。

Examples

函數 testfun 啟始狀態為被鎖定的.

function testfun
mlock
  .
  .

當你執行該函數時,它是被鎖定在記憶體中的。你可以用 mislocked 函數來確定這件事。

testfun
 
mislocked testfun
ans =
     1

使用 munlock 就可以解除它的鎖定。重新使用 mislocked 可以確定它在這個時候確實被解除鎖定了。

munlock testfun
 
mislocked testfun
ans =
     0

See Also

mlock, mislocked, persistent

 

 

mu2lin

 

NaN