Samiu Haque
Followers: 0 Following: 0
A Naval Architect and Marine Engineer, have interest in Programming, Computational Science and Numerical Techniques
Programming Languages:
C++, C, MATLAB, HTML
Spoken Languages:
Bengali, English
C++, C, MATLAB, HTML
Spoken Languages:
Bengali, English
Feeds
已回答
How do I use an indicator variable to select one of these 4 equations?
You can use 'switch' statement, like selecting required option as 1,2,3. There may have some other methods which I am not aware ...
How do I use an indicator variable to select one of these 4 equations?
You can use 'switch' statement, like selecting required option as 1,2,3. There may have some other methods which I am not aware ...
4 years 前 | 0
已回答
evaluate symbolic expression... can't figure out!!
Use this substitute function. rw_new = subs(rw11,v,(t^(1/2)))
evaluate symbolic expression... can't figure out!!
Use this substitute function. rw_new = subs(rw11,v,(t^(1/2)))
4 years 前 | 0
已回答
I am student from Ukraine, me university do not provide a Matlab license, can I buy student version of software?
https://uk.mathworks.com/matlabcentral/answers/366038-how-can-i-purchase-a-new-student-version-license#answer_377471
I am student from Ukraine, me university do not provide a Matlab license, can I buy student version of software?
https://uk.mathworks.com/matlabcentral/answers/366038-how-can-i-purchase-a-new-student-version-license#answer_377471
4 years 前 | 0
已回答
I need you help to convert this equation to matlab code
I think the second for loop is supposed to iterate 'n+1' times and not 'n' times. As I(i,j) has the dimension of m*(n+1)
I need you help to convert this equation to matlab code
I think the second for loop is supposed to iterate 'n+1' times and not 'n' times. As I(i,j) has the dimension of m*(n+1)
4 years 前 | 0
已回答
How do I prompt a user for their name and age, then display a sentence
Maybe this is what you want- name = input('Enter your name: ','s'); age = input('Enter your age: '); fprintf('Hello %s in 5...
How do I prompt a user for their name and age, then display a sentence
Maybe this is what you want- name = input('Enter your name: ','s'); age = input('Enter your age: '); fprintf('Hello %s in 5...
4 years 前 | 0
已回答
How can I make a function where I ask two input matrices from user and do matrix multiplication using If-else conditions and error functions?
fprintf('For matrix input use the standard format\n e.g. [1 2 3;4 5 6]\n') a = input('Enter first matrix: '); b = input('Enter...
How can I make a function where I ask two input matrices from user and do matrix multiplication using If-else conditions and error functions?
fprintf('For matrix input use the standard format\n e.g. [1 2 3;4 5 6]\n') a = input('Enter first matrix: '); b = input('Enter...
4 years 前 | 1
已回答
calling exponential function to non linear square
In your function you can't raise a matrix to a power. The only thing that is possible is to raise the power of each element in t...
calling exponential function to non linear square
In your function you can't raise a matrix to a power. The only thing that is possible is to raise the power of each element in t...
4 years 前 | 1
| 已接受
已回答
Solve function (and other code help)
syms Z hi = [0 , 11 , 20, 32 , 47, 51 , 71 , 84.852 , 90 ]; Re = 6356.766; for i=1:length(hi) A(i) = solve((Re*Z)/(R...
Solve function (and other code help)
syms Z hi = [0 , 11 , 20, 32 , 47, 51 , 71 , 84.852 , 90 ]; Re = 6356.766; for i=1:length(hi) A(i) = solve((Re*Z)/(R...
4 years 前 | 0
| 已接受
已回答
diffrence between rem and mod
When mod(4,-10) is used, it works as -10*1=-10 and the remainder becomes 4-10=-6 But when rem(4,-10) is used, it works as -10*0...
diffrence between rem and mod
When mod(4,-10) is used, it works as -10*1=-10 and the remainder becomes 4-10=-6 But when rem(4,-10) is used, it works as -10*0...
4 years 前 | 0