How do I get the Command Window to recognize variables created in a function?
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on Whos in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!