s2y not working for 4x4 matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hi why s2t is working for 2x2 matrix but not for 4x4 matrix?
This is fine >> ola=[1 2;3 4]; >> s2t(ola);
this creates an error >> ola=[1 2 3;1 2 3;1 2 3]; >> s2t(ola)
Error using CheckNetworkData (line 90) S_PARAMS must be a complex 2x2xM array.
Error in s2t (line 24) CheckNetworkData(s_params, 2, 'S_PARAMS');
working on MATLAB R2014b
2 Commenti
Ganesh Hegade
il 10 Mar 2017
I think its because you are passing 3x3 matrix. As per the s2t function guideline input supposed to be 2x2 matrix. s2t
Risposte (1)
Ganesh Hegade
il 13 Mar 2017
I think its because you are passing 3x3 matrix. As per the s2t function guideline input supposed to be 2x2 matrix. s2t
0 Commenti
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!