Effacer les filtres
Effacer les filtres

How to get matrix data from function ,anyone help me

1 vue (au cours des 30 derniers jours)
PRED LIU
PRED LIU le 2 Mai 2020
Z=[ 1 3 4 ;5 3 1;3 3 3];
a=1;
Qa=example(a,Z);
ss=Qa(1)+Qa(2); %=====> I CAN'T get both matrix data a+Z and a*Z
%%
%%%my function building as such
function dBB=example(a,Z)
dBB(1)= Z+Z;
dBB(2)=Z+Z+Z+Z+Z;
%%%%%%

Réponse acceptée

James Tursa
James Tursa le 2 Mai 2020
Modifié(e) : James Tursa le 2 Mai 2020
Not sure what the real question is. Maybe this does what you want?
function [apZ,atZ]=example(a,Z)
apZ = a + Z;
atZ = a * Z;
end
and you would call it like this
[x,y] = example(a,Z);
  2 commentaires
PRED LIU
PRED LIU le 2 Mai 2020
Thank you ,James
I wnat to perform the following operations in the main program
answer = sqar ( apZ.^2 +atZ.^2)
Walter Roberson
Walter Roberson le 2 Mai 2020
[apZ, atZ] = example(a,Z);
answer = sqrt(apZ.^2 + atZ.^2);

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Communications Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by