Open in MATLAB Online Ran in: Hi! It seems that you're having trouble loading a MAT file using the "load" function. Whenever you try to load the file, you receive an error message saying, "Error using load, unable to read file". ...
Open in MATLAB Online There is no symbolic variable as input for symsum. You do h(k), but what does this mean, k had not a value yet so you cannot take the k th element of h. And you didn't define tau so tau(k) does not exist. And you should use length(h) instead of size...
error maybe you can help us. we call b=a(66:8065,2) and when I go to look at the matrix b , I see commas after each element. it looks like that it picks up these commas from the text file, can that cause this error? if yes, how do we get rid of these commas? Thanks ...
MATLAB Online で開く Well, the obvious answer is basically what the error message is saying:xonly has 132 elements, but you're loopingjup to 200. So whenjgets to 133, the lineif x(j) ...is going to fail. What may be causing the problem is the==. IfxandZ1are doubles, you may...
first issue : error here : IOcoef = importdata('IOcoef.txt'); : the file IOcoef.txt is not provided second issues : you have variable names like fij , pis and alike , which are the same as some of your subfunctions names : % solution of...
Open in MATLAB Online %% Data import [filename,PathName] = uigetfile('*.csv','Select the CSV file','MultiSelect','on'); filename = cellstr(filename); n = size(filename); n = n(2); ShoeImportData = cell(n,1); Shoe_all_data = cell(n,1); ...