Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

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

1 visualización (últimos 30 días)
Dipten
Dipten el 3 de Abr. de 2014
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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 ????

Respuestas (1)

A Jenkins
A Jenkins el 3 de Abr. de 2014
function other_function(template_recognition)
feature=template_recognition(:,:,1);
end

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by