How do I get the Command Window to recognize variables created in a function?

2 次查看(过去 30 天)
function [K,T] = KTBC(n)
%Create the four special matirces assuming n>1
K=toeplitz([2 -1 zeros(1,n-1)]);
T=K;T(1,1)=1
end
%Won't display T and K in command window

采纳的回答

Amit
Amit 2014-2-2
Because you have to do something like this on the command window:
[K,T] = KTBC(n)
KTBC is a function that take an input 'n' and gives two variable output. Unless you specify a name for those variables while running the function, it will go ans variable

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Whos 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by