How I can run two different functions at the same time ?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Akash Pal
le 19 Août 2021
Réponse apportée : KSSV
le 19 Août 2021
function [ add, sub] = inp(x,y)
add= x+ y;
sub=x-y;
end
function [ mul,div ] =iput(x,y)
mul=x*y;
div=x/y;
end
These two functions are in differnt script .I am running them differntly .But I want to do it in a single time because in both case my inputs are same .So how I can do it ?
0 commentaires
Réponse acceptée
Star Strider
le 19 Août 2021
I am not certain what you want, however one approach is to write a third function that returns all the outputs of the other functions:
x = randi(9)
y = randi(9)
[A,B,C,D] = CallFcns(x,y)
function [A,B,C,D] = CallFcns(x,y)
[A,B] = inp(x,y);
[C,D] = iput(x,y);
end
function [ add, sub] = inp(x,y)
add= x+ y;
sub=x-y;
end
function [ mul,div ] =iput(x,y)
mul=x*y;
div=x/y;
end
.
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur MATLAB Report Generator 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!