My function gives me one output instead of 2?

조회 수: 1 (최근 30일)
Riccardo Bondesan
Riccardo Bondesan 2019년 6월 23일
답변: Riccardo Bondesan 2019년 6월 23일
For example:
function [area,peri]=triangle(a,b)
area=a.*b*0.5;
peri=a+b+sqrt(a.^2+b.^2);
In the coomand window I get only the first argument:
>> triangolo(3,4)
ans =
6

채택된 답변

madhan ravi
madhan ravi 2019년 6월 23일
Call your function with two outputs.

추가 답변 (1개)

Riccardo Bondesan
Riccardo Bondesan 2019년 6월 23일
Thanks! It works now

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by