Simplifying a code to one matrix
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Mahmoud Abbas
am 13 Mär. 2022
Kommentiert: Mahmoud Abbas
am 15 Mär. 2022
%I want to make this code perform the same function but using a matrix M(x,y) instead of using 2 variables
%meaning I want the code to return the final values of Mx and My in a single 1x2 Matrix
function [Mx,My]=fun(P,n,p,u,U)
S= span(n,p,u,U);
Z= Bas(S,u,p,U);
Mx=0; My=0;
for k=1:p+1
Mx= Mx + Z(k) * P(1, S-(p+1)+k);
My= My + Z(k) * P(2, S-(p+1)+k);
end
end
0 Kommentare
Akzeptierte Antwort
Arif Hoq
am 13 Mär. 2022
you can concatenate the matrix Mx and My either horizontally or vertically
% if horizontal
output=horzcat(Mx,My)
% if vertical
output=vertcat(Mx,My)
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!