フィルターのクリア

How I define the variable B in a function [A, B] = ReadHyperc​ube(strcat​(pathname,​filename))​; ?

1 回表示 (過去 30 日間)
Surya Gnyawali
Surya Gnyawali 2018 年 4 月 25 日
コメント済み: Rik 2018 年 4 月 26 日
[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 件のコメント
Surya Gnyawali
Surya Gnyawali 2018 年 4 月 26 日
編集済み: Stephen23 2018 年 4 月 26 日
Hi Rik,
[A, B] = ReadHypercube(strcat(pathname,'.bil'));
This arises when I try to process cubical data set (hyperspectral).This function runs well but when I run another piece of code
%Copy wavelength data into array
hyperdata=zeros(size(B,1), 4);
hyperdata(:,1)=B;
hyperdata(:,2)=B;
This gives me an error
Undefined function or variable 'B'
That's why I am trying to define 'B' as out put
Rik
Rik 2018 年 4 月 26 日
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.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by