How can I write a loop, which can make the parameter "V" change with a cyclic variable "i"?
1 次查看(过去 30 天)
显示 更早的评论
My code is:
netlist = ['D:\1\MATLAB\mine.txt'];
code =['D:\\1\\MATLAB\\mine.asc\r\n'...
'R1 N001 0 {R}\r\n'...
'C1 N001 0 {C}\r\n'...
'V1 N001 0 {V}\r\n'...
'.tran .1\r\n'...
'.params R = 1000 C = 0.001 V = 15\r\n'...
'.backanno\r\n'...
'.end\r\n'];
fid = fopen(netlist,'w+');
fprintf(fid,code);
fid = fclose(fid);
I have to make the parameter "V" change with a cyclic variable "i". Is there any way to do that?
1 个评论
Ujjwal Pratik
2020-4-17
Hi Zhenyu ,
I am facing a similar issue.
Can you share your code to show how you used "strcat" and "num2str" within a loop.?
采纳的回答
Vladimir Sovkov
2020-1-29
Use Matlab functions "strcat" and "num2str" within a loop.
3 个评论
Ujjwal Pratik
2020-4-17
I am facing a similar issue.
Can you share your code to show how you used "strcat" and "num2str" within a loop.?
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!