how to define class for basic functions like disp, load save

5 ビュー (過去 30 日間)
Ashish
Ashish 2014 年 1 月 17 日
回答済み: Image Analyst 2014 年 1 月 26 日
i am calling classdef in a program and once called basic functions like disp, save, load does ot work. do i need to define any class for them. pl. guide
  7 件のコメント
Ashish
Ashish 2014 年 1 月 26 日
thanks all for your comments. attached is the sample file where i am not able to call default functions.
Matt J
Matt J 2014 年 1 月 26 日
編集済み: Matt J 2014 年 1 月 26 日
I am not clear... is it the case that you have a .m file that has regular functions and also has a classdef inside it? A classdef needs to be in a file of its own.
That's not precisely true, Walter. A classdef file can contain sub-functions.

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

回答 (2 件)

Matt J
Matt J 2014 年 1 月 26 日
編集済み: Matt J 2014 年 1 月 26 日
When I run your code, I have no problem displaying invoking the default disp.
>> obj=vrt_gen; disp(obj)
vrt_gen with properties:
hdr: []
trailer: []
word0: []
psize: []
stream: 0
int_ts: []
frac_ts_0: []
frac_ts_1: []
count: []
nSamples: []
nPkts: []
pkt: []
pkts: []
payload: []
lpf: []
symbols: []
dsymbols: []
M: []
N: []
fs: []
ts: []
fc: []
time: []
upsample: []
mixed: []
filt_y: []
filt_t: []
filt_type: []
filt_beta: []
filt_Fd: []
filt_Fs: []
scheme: []
h: []
g: []
filtered_sig: []
What is the full path to your main_file.m?

Image Analyst
Image Analyst 2014 年 1 月 26 日
You don't have any methods in your class. And disp() doesn't even appear anywhere in the file. No, you do not need a class to use disp, save, and load. You can use them just by themselves. Not sure what you're doing tor attempting to do.

カテゴリ

Help Center および File ExchangeClass Introspection and Metadata についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by