Community Profile

photo

Samiu Haque


Last seen: 5 days ago Active since 2020

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

Statistics

All
  • MATLAB Central Treasure Hunt Finisher
  • Knowledgeable Level 1
  • First Answer
  • Scholar
  • Project Euler I
  • Personal Best Downloads Level 1
  • 5-Star Galaxy Level 1
  • Community Group Solver
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Promoter
  • Speed Demon

View badges

Content Feed

View by

Answered
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 ...

3 years ago | 0

Answered
evaluate symbolic expression... can't figure out!!
Use this substitute function. rw_new = subs(rw11,v,(t^(1/2)))

3 years ago | 0

Answered
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

3 years ago | 0

Answered
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)

3 years ago | 0

Answered
how to convert double to uint8
Use cast() function. cast(G,'uint8');

3 years ago | 0

Answered
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...

3 years ago | 0

Answered
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...

3 years ago | 1

Answered
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...

3 years ago | 1

| accepted

Answered
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...

3 years ago | 0

| accepted

Answered
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...

3 years ago | 0