- possibly the fopen() failed
- possibly the fopen worked but you did not assign it to a variable named in
- possibly the fopen worked and you assigned to in but in was not declared global in the place it was assigned to
fscanf problem and get invalid file identifier
1 次查看(过去 30 天)
显示 更早的评论
base on handbook i write the fucntion as below.
but i am confuse why i got error
Error using fscanf
Invalid file identifier. Use fopen to generate a valid file identifier.
function [npoin,nelem,nvfix,ntype,nnode,ndofn,ndime,ngaus, ...
nstre,nmats,nprop,lnods, matno,coord,props,nofix, ...
iffix,fixed]=input_fem_elast();
format long;
global in;
global out;
%--- read the Control data:
npoin=fscanf(in,'%d',1);
0 个评论
采纳的回答
Walter Roberson
2022-9-6
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Low-Level File I/O 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!