Trouble with declaring function output

1 回表示 (過去 30 日間)
Chris Moon
Chris Moon 2019 年 6 月 27 日
コメント済み: Chris Moon 2019 年 6 月 28 日
I created a function for importing data from text files, and then outputting an array of the averages of these data.
data = function importer
files = dir('*.txt');
for i = 1:length(files)
temp = importdata(files(i).name);
radData = temp.data(:,4);
radAvg = mean(radData(~radData==0));
data{i} = radAvg;
end
end
When I run the code however, I get the error
Error: File: importer.m Line: 1 Column: 8
Function definitions are not permitted in this context.
However, defining the function simply as
function importer
and then displaying the final array at the end of the code
...
end
data
end
shows that my code works otherwise. I am not sure what I did wrong but any help would be greatly appreciated.

採用された回答

James Tursa
James Tursa 2019 年 6 月 27 日
function data = importer
  1 件のコメント
Chris Moon
Chris Moon 2019 年 6 月 28 日
wow I'm dumb, can't believe I forgot the order. Thanks alot!

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by