Function within a for?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
I made a function that makes a plot with 2 parameters: graph.m. This works fine, but the problem is that I need to do the same graph within a loop. This is what I have (simplified):
idest=[10046,10100,10105];
stid=[{'Zavalla'};{'Corboba Aero'};{'Cordoba Observatorio'}];
for k=1:size(idest,2);
load (['./rec' num2str(idestaciones(k)) '.mat']);
graph(X,Y);
end
where the files that load contain the matrix or the data for building the matrix that goes in the input of the graph function (ie matrix X and Y)
The issue is that graph.m is dependant of the 'k' position in the for, since it gives the number of code and title that should be printed in the plot. So when I run the script which includes the function graph, I get this error:
??? Undefined function or variable 'k'.
I have no idea how to fix this.. any ideas??
I hope I made myself clear. Please tell me if I should add the graph script or others!
댓글 수: 0
채택된 답변
the cyclist
2013년 4월 4일
Can you just pass the k parameter in, too?
graph(X,Y,k)
You'll need to modify the function, too, something like
function [] = graph(X,Y,k)
presumably.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Discrete Data Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!