How to remove empty matrix : 1 by 0 in my code
显示 更早的评论
function Question2
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
xxx
But my answer is Empty matrix: 1-by-0
I am trying to find the intersection point, but it has an error, I dont know what to do to change it.
Also i did it in a simple way,
function omg
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
x=-3:0.4:5;
y1=(x.^2);
y2=(x.^3)
find(y1==y2)
this codes works fine, but as soon as I put y1=2+(x.^2); it becomes empty matrix again.
Please help me if you can" thank you so much in advance
采纳的回答
更多回答(1 个)
dpb
2015-10-19
You didn't provide an output argument to either function
doc function % for details
类别
在 帮助中心 和 File Exchange 中查找有关 Operators and Elementary Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!