Can't call function within class

조회 수: 2 (최근 30일)
Manash Sahoo
Manash Sahoo 2020년 4월 16일
댓글: Cedric 2020년 4월 16일
Hi everyone. First time posting here. I have a matlab class of a signal which comprises parts x, y, sampling rate (Fs), and Color. I have also defined a function within the methods of the class for resampling the signal and building a new x axis for the resampled data. However, I'm unable to call this function even after creating an object.
Using R2019b. The code is as follows:
classdef sigmoid_signal
properties
signal_x
signal_y
Fs
Color
end
methods
function resamp_x,resamp_y = resamp_sig(obj);
resamp_x = 1/obj.Fs:1/obj.Fs:numel([obj.signal_y])/obj.Fs;
resamp_y = abs(resample([obj.signal_y],[obj.signal_x],obj.Fs));
end
end
end

채택된 답변

Cedric
Cedric 2020년 4월 16일
You forgot to bracket the output args, and the semi-column is useless:
function [resamp_x,resamp_y] = resamp_sig(obj)
  댓글 수: 2
Manash Sahoo
Manash Sahoo 2020년 4월 16일
Thank you so much! What an easy mistake!
Cedric
Cedric 2020년 4월 16일
Better when they are easy!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by