stem fuction shows error everytime

조회 수: 1 (최근 30일)
Ayush Bhagta
Ayush Bhagta 2020년 1월 25일
답변: Walter Roberson 2020년 1월 25일
Attempt to execute SCRIPT stem as a function:
C:\Users\Asus\Documents\MATLAB\stem.m
Error in new (line 10)
stem(t,fun1);
this error appears everytime i use stem.
This is what i wrote:
clc;
clear all;
close all;
t=0:0.1:5;
x=sin(2*pi*t);
y=cos(2*pi*t);
f1=subplot(3,2,1);
fun1=x+y;
stem(t,fun1);
grid on;
title('add');
xlabel('t');
ylabel('add');

답변 (2개)

Star Strider
Star Strider 2020년 1월 25일
You have a script file that you named ‘stem’. This is called ‘overhsadowing’ a MATLAB function.
The solution is to find the script file and re-name it.
Running:
which stem -all
will tell you where it is. It should be the first line in the returned list.

Walter Roberson
Walter Roberson 2020년 1월 25일
The stem.m file that it lists in the error message: you need to rename it to something else. For example mystem.m

카테고리

Help CenterFile Exchange에서 Agriculture에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by