Creating a m-file within a script
1 次查看(过去 30 天)
显示 更早的评论
I have a Matlab code, in that there is this line which I am unable to understand. Please interpret this command line:
write_fcn('D_matrix.m',{'q','p'},[list_q; param_list],{D_mtx,'D'});
2 个评论
Daniel M
2019-10-4
编辑:Daniel M
2019-10-4
write_fcn is not a built-in Matlab function. It must be defined somewhere in your code. Without knowledge of that function or the values of the other parameters, we cannot provide much information.
I suggest putting a breakpoint at that line of code and Stepping In to that function to see what it is doing.
采纳的回答
Walter Roberson
2019-10-4
https://github.com/pamiro/adaptive_manipulator_control/blob/master/write_fcn.m
Part of "Adaptive Control of 4-DoF Robot manipulator".
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!