Feeds
질문
Too many input arguments
My last image is the function for heat flux and the middle one is calling it in another file and the top image is the erro...
거의 7년 전 | 답변 수: 0 | 0
0
답변질문
Sorting a list of numbers from one file then writing to a second file
Sorting is typically done in-place, by iterating up the array, growing the sorted list behind it. At each array-position, it che...
거의 7년 전 | 답변 수: 1 | 0
1
답변질문
printing the average line on a graph
load site.dat; plot(site(:,13),(site(:,9))); xlabel({'Time','(In Minutes)'}) ylabel('Water Vapor Concentration') title('Wate...
거의 7년 전 | 답변 수: 1 | 0
1
답변질문
Function that converts Celsius to Fahrenheit and prints it to a file
function Y=CelToFar(Cel) Far=((9*Cel/5)+32); X = [Far, Cel]; fileID = fopen('ftoc.txt','w'); fprintf(fileID,'%6s %12s\n',...
거의 7년 전 | 답변 수: 1 | 1

