How i can find the difference between 2 values.

5 ビュー (過去 30 日間)
myrto pieridou
myrto pieridou 2022 年 7 月 18 日
編集済み: Jon 2022 年 7 月 20 日
I have 2 tables, with 1 column and 24 rows each.
I want to find the diferrence between each value in every row.
for example
T1=[1.5
2.5
3.5
4.5]
T2=[1.2
2
3
4]
The answer must be
Diff=[ 0.3
0.5
0.5
0.5]

回答 (2 件)

Jon
Jon 2022 年 7 月 18 日
  9 件のコメント
myrto pieridou
myrto pieridou 2022 年 7 月 20 日
I move the tables in other script, and the diffence now is correct. Maybe there is a missunderstanding in the code!
Thank yo for your help!
Jon
Jon 2022 年 7 月 20 日
編集済み: Jon 2022 年 7 月 20 日
Glad you got this sorted out. If this answered your question please accept the answer. Thanks @Stephen23 for pressing through the details on this and helping the OP understand.

サインインしてコメントする。


Torsten
Torsten 2022 年 7 月 18 日
T1=[1.5
2.5
3.5
4.5];
T2=[1.2
2
3
4];
Difference = T1 - T2
Difference = 4×1
0.3000 0.5000 0.5000 0.5000
  1 件のコメント
myrto pieridou
myrto pieridou 2022 年 7 月 18 日
i already did this but the answer is different. I will upload my code to see it.
clear all
define_constants;
Unrecognized function or variable 'define_constants'.
mpc=loadcase('case24_ieee_rts');
demand=[1775.835,1669.815,1590.3,1563.795,1563.795,1590.3,1961.37,2279.43,2517.975,2544.48,2544.48,2517.975,2517.975,2517.975,2464.965,2464.965,2623.995,2650.5,2650.5,2544.48,2411.955,2199.915,1934.865,1669.815]
time=[1:1:24];
voltage1=[1.0350;1.0350;0.9917;0.9997;1.0201;1.0154;1.0250;0.9947;1.0029;1.0308;0.9915;1.0052;1.0200;0.9800;1.0140;1.0170;1.0384;1.0500;1.0235;1.0387;1.0500;1.0500;1.0500;0.9790;];
%proportional load distribution
tot_load=0;
for i=1:1:24
tot_load=tot_load+mpc.bus(i,PD);
end
load_prc=mpc.bus(:,PD)./tot_load;
for i=1:1:24
mpc.bus(:,PD)=load_prc.*demand(i);
if i==19
mpc.gen([3],BR_STATUS)=0;
mpc.branch([3],BR_STATUS)=0;
end
normal(i)=runpf(mpc)
end
voltage=normal(19).bus(:,VM)
Difference = voltage1 - voltage

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by