"Mismatched function argument" means that a variable is not of the type expected by the function. I think the one it's complaining about is the one called lbc_scale_factor in the documentation. This is supposed to be a real number, but you have no real variables declared.
Your call to loadsbcs_create also only has 10 arguments; the documentation shows it needs 11.
"Mismatched function argument" means that a variable is not of the type expected by the function. I think the one it's complaining about is the one called lbc_scale_factor in the documentation. This is supposed to be a real number, but you have no real variables declared.
Your call to loadsbcs_create also only has 10 arguments; the documentation shows it needs 11.