필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How can access value of a variable in 1 M-file into other M-file ?

조회 수: 1 (최근 30일)
Dipten
Dipten 2014년 4월 3일
마감: MATLAB Answer Bot 2021년 8월 20일
function [template_detection, template_detection_display, ...
template_recognition, template_recognition_display, ...
template_ids, template_names] ...
= vipwarningsigns_templates()
template_recognition(:, :,1) = feature;
end
now here is 1 M-file now i want to use template_recognition(:, :,1) in other M-file. so exactly how can i do this plz tell me ????

답변 (1개)

A Jenkins
A Jenkins 2014년 4월 3일
function other_function(template_recognition)
feature=template_recognition(:,:,1);
end

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by