Feeds
질문
Need Help!!!! How Can I Label the y axis on the right side? I did it and it still does not appears on right side of the graph
This is part of the code I have been working on: if true % codetitle('Moody Chart') xlabel('Reynolds number Re') yla...
대략 8년 전 | 답변 수: 2 | 0
2
답변질문
Why is my fprintf value doesent come out as I wanted?
if true % code disp('--------------------------------------------------------------------------') disp(' ') disp('^^^...
대략 8년 전 | 답변 수: 1 | 0
1
답변질문
How can I code fprintf this using forloop to construct a table?
i = 1:length(ReT) disp('--------------------------------------------------------------------------') fprintf('%-...
대략 8년 전 | 답변 수: 0 | 0
0
답변질문
I want to fprintf only certain range of value from a long matrix (Middle 5 numbers out of a vector of 20)
Suppose I have 20 elements in a row vector [1:20] As we know the size of the matrix is 1x20. The real question is, I only want t...
대략 8년 전 | 답변 수: 1 | 0
1
답변질문
Error using + Matrix dimensions must agree. Pleasee Helppp
if true % code endRelRough = [0.00001 0.00005 0.0001 0.0002 0.0004 0.0006 0.0008 0.001 0.002 0.004 0.006 0.008 0.01 0....
대략 8년 전 | 답변 수: 1 | 0
1
답변질문
Function Output Not Displaying Why??
function PT=myPascal(n) PT=zeros(n,n); for i=1:n for j=1:i if n>0 PT(i,j)=factorial(i-1)/(f...
대략 8년 전 | 답변 수: 1 | 0