How I define the variable B in a function [A, B] = ReadHypercube(strcat(pathname,filename)); ?
Afficher commentaires plus anciens
[filename, pathname, indx] = uigetfile( ...
{'*.hdr','Image Cube(*.bil)';
'*.*', 'All Files (*.*)'},'Pick a file','file path');
if indx == 1
[A, B] = ReadHypercube(strcat(pathname,filename));
elseif indx == 2
I will appreciate it. Thanks
4 commentaires
Rik
le 25 Avr 2018
That depends on the ReadHypercube function. If the top line is similar to the following line, it should do what you want.
function [A,B]=ReadHypercube(filename_and_path)
Walter Roberson
le 25 Avr 2018
Is this a question about the design of a function ReadHypercube that you are writing? If so, then what outputs would make sense for such a function?
Surya Gnyawali
le 26 Avr 2018
Modifié(e) : Stephen23
le 26 Avr 2018
Rik
le 26 Avr 2018
We have no idea what function you are trying to use/modify, so we can't help you. Based on the second block of code, I would guess that B is a columnar vector that contains the wavelengths of the hypercube, but we have no idea what your function does or how it would have to infer this vector.
Réponses (0)
Catégories
En savoir plus sur Language Fundamentals dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!