![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/7714989.jpg)
Andriy Kavetsky
Followers: 0 Following: 0
I'm student of Applied Mathematics at Ivan Franko National University.
統計
All
Feeds
質問
Why bvp4c not works?
I have an error in using bvp4c, my result is wrong My task is to solve 3*y"+2*y'=x y(0)=-2 y(1)=6 my matlab c...
8年以上 前 | 1 件の回答 | 0
1
回答回答済み
Hi. Anyone can help me? please.
Maybe this will help you) C=0:20:100 F=9/5*C+32
Hi. Anyone can help me? please.
Maybe this will help you) C=0:20:100 F=9/5*C+32
8年以上 前 | 0
| 採用済み
回答済み
write script( a for loop that multiplies all evens numbers from 2 to 10)
x=2:10; x=x(mod(x,2)==0) res=1; s=size(x) for i=1:s(1) for j=1:s(2) res=res*x(i,j); end end
write script( a for loop that multiplies all evens numbers from 2 to 10)
x=2:10; x=x(mod(x,2)==0) res=1; s=size(x) for i=1:s(1) for j=1:s(2) res=res*x(i,j); end end
8年以上 前 | 0
回答済み
How to convert decimal matrix matrix into binary matrix?
Use dec2base(a,2) command to get string array of binary numbers and str2num(dec2base(a,2)) to convert string into numbers
How to convert decimal matrix matrix into binary matrix?
Use dec2base(a,2) command to get string array of binary numbers and str2num(dec2base(a,2)) to convert string into numbers
8年以上 前 | 0
回答済み
How do I format the screen output?
Maybe you will find some useful information there https://www.mathworks.com/help/matlab/matlab_env/format-output.html
How do I format the screen output?
Maybe you will find some useful information there https://www.mathworks.com/help/matlab/matlab_env/format-output.html
8年以上 前 | 1
回答済み
replace zeros according to distribution of integers in each column
You can try this n=10; or n=5; and x(x==0)=randi(n)
replace zeros according to distribution of integers in each column
You can try this n=10; or n=5; and x(x==0)=randi(n)
8年以上 前 | 0
回答済み
how to write determinant of n*n matrix by myself?
Look at this site. http://www.sosmath.com/matrix/determ1/determ1.html
how to write determinant of n*n matrix by myself?
Look at this site. http://www.sosmath.com/matrix/determ1/determ1.html
8年以上 前 | 0
回答済み
Find minimum y value of vectors
If you write for i=1:10; t=i, then you would'nt get vector because t=10, maybe you should write t(i)=i for creating an vector an...
Find minimum y value of vectors
If you write for i=1:10; t=i, then you would'nt get vector because t=10, maybe you should write t(i)=i for creating an vector an...
8年以上 前 | 0
回答済み
How to Specify Symbolic Variable Using Symbolic Toolbox
You should specify the variable theta_1 using next command >> syms theta_1
How to Specify Symbolic Variable Using Symbolic Toolbox
You should specify the variable theta_1 using next command >> syms theta_1
8年以上 前 | 0
| 採用済み
回答済み
Where can i find the MWArray.dll - file?
You should find the path like in example C:\Program Files\MATLAB\R2009b\toolbox\dotnetbuilder\bin\win64\v2.0 or briefly sp...
Where can i find the MWArray.dll - file?
You should find the path like in example C:\Program Files\MATLAB\R2009b\toolbox\dotnetbuilder\bin\win64\v2.0 or briefly sp...
8年以上 前 | 0
| 採用済み
回答済み
How to get second derivative in symblolic toolbox?
You should determine x and t as syms x t and use diff command diff(cos(x*t^2)+x^2+4*t^3),t,2); t, 2 means second derivative by t...
How to get second derivative in symblolic toolbox?
You should determine x and t as syms x t and use diff command diff(cos(x*t^2)+x^2+4*t^3),t,2); t, 2 means second derivative by t...
8年以上 前 | 1
| 採用済み