Community Profile

photo

Dyuman Joshi


Last seen: Today Attivo dal 2012

Followers: 1   Following: 0

Contatto

Mechanical Engineer IITG Time zone - GMT +5.30 (IST)

Programming Languages:
Python, MATLAB
Spoken Languages:
English, Hindi
Pronouns:
He/him
Professional Interests:
Fluid Dynamics, Aerospace Engineering, Computational Fluid Dynamics (CFD), Hydraulics and Pneumatics

Statistiche

All
  • MATLAB Mini Hack Participant
  • Treasure Hunt Participant
  • Thankful Level 4
  • 24 Month Streak
  • Cody Challenge Master
  • Matrix Manipulation II Master
  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 1
  • Most Accepted 2023
  • Guiding Light
  • Curator
  • Number Manipulation I Master

Visualizza badge

Feeds

Risposto
I am trying to form a conditional loop that shows the growth of money, I put in $1000 every year and it grows by 85 for ten years but keep returning one value
format shortg n=10; money=[1000 zeros(1,n-1)]; supersaver=1000; for i=2:n money(i)=(money(i-1)+supersaver)*1.08; ...

circa un'ora fa | 0

Risposto
I need to make a function for compound interest using for
In case you want the final output - format shortg money=1000; for k=1:10 money=money*1.08; end money In case you w...

circa un'ora fa | 0

| accettato

Risposto
How to extract data from a 3D Array?
Use logical indexing - %Sample data p = 5; q = 6; r = 4; y = rand(p,q,r)-1; y(:, :, [2 r+1]) = zeros(p,q,2) %Check i...

circa 24 ore fa | 1

Risposto
for構文
That is because you are overwriting the files in each iteration of the for loop. Pre-allocate the output to assign data to it a...

8 giorni fa | 1

| accettato

Risposto
'입력 인수가 부족합니다' 이 오류를 해결하고 싶어요.
I have made some changes to your code, please check the code below and refer to the comments for information - syms('x') %%...

9 giorni fa | 0

| accettato

Risposto
Versions de Matlab compatibles Windows 11 et versions non recommandées pour Windows 11
MATLAB was introduced in Windows 11 from R2021b onwards. So, any versions before it i.e. R2021a or earlier, won't work on it. ...

10 giorni fa | 0

| accettato

Risposto
Combining excel files with unequal rows
Try outerjoin - %Data from the images attached for example %Use readtable() to read the data as tables directly Name = ["Ada...

10 giorni fa | 0

| accettato

Risposto
複素数の事前割り当て
You can use this syntax of zeros() to preallocate the data as a complex array -https://in.mathworks.com/help/matlab/ref/zeros.ht...

11 giorni fa | 1

| accettato

Risposto
How to find the frequency of individual elements in a matrix?
MATLAB has a in-built function for it - histogram, which does both the operations in single command - s = load('micro2d (2).ma...

15 giorni fa | 0

| accettato

Risposto
Assumption on another symbolic Variable affecting a previous assumption
Because assume over-writes assumptions. From the Tips section in the documentation page - "assume removes any assumptions pr...

15 giorni fa | 1

| accettato

Risposto
MATLAB Grader: What should my assessment return when it determines a student solution is correct or incorrect?
You can use assert to check a condition (whether the title contains a particular text or not) and throw a (custom defined) error...

15 giorni fa | 1

| accettato

Risposto
To find answer using matlabfunction
You get the wrong value because the order of inputs is not correct. By default, matlabFunction uses alphabetical order for the ...

15 giorni fa | 0

| accettato

Risposto
convert a .mat to excel file
(Assuming single data set in each file) Read the data from the files and use writematrix to save the data in excel files accord...

17 giorni fa | 0

Risposto
Matlab cannot recognize variable
"Why is Lambda unrecognized here?" Because the while loop is not initiated, as the condition is not satisfied. As the while lo...

18 giorni fa | 1

| accettato

Risposto
cell配列をスカラー配列に直すにはどうすればいいですか?
I am not sure why you are using linspace here. You can use cellfun to calculate mean of each cell element - avg = cellfun(@me...

18 giorni fa | 1

Risposto
Matlab is giving different answers for the same calculation
That's because the value of D_h is not 0.0019. The value stored is not the same as value displayed. rho = 916; %kg/m^3 ...

20 giorni fa | 2

Risposto
インデックスが配列要素数を超えています。インデックスは 0 を超えてはなりません。
When kq is 0, the equation becomes 1==0, which is obviously not true, thus there is no solution for it. For that iteration, q1 i...

22 giorni fa | 1

| accettato

Risposto
How can I change the decimal separator when exporting to Excel?
Try - T = readmatrix('filename.format', 'DecimalSeparator',',');

22 giorni fa | 0

Risposto
How to get Bin Edges at specific Value point (Maximum value) in histogram.
load('Data.mat') H = histogram(DATA) %Get the index of the max value alongside [HMAX, idx] = max(H.Values,[],"all") %USe the...

22 giorni fa | 0

| accettato

Risposto
Change specific colour in an image
The image is actually an indexed image with a colormap. Use the map to convert it to an rgb image via ind2rgb - %Read the file...

22 giorni fa | 0

Risposto
xlabel do not appear in plot
Call the plot() command first and then define the labels and legend - syms x s u1 = stepfun(x,0); f1 = x.*exp(-3*x).*u1; ...

23 giorni fa | 1

| accettato

Risposto
Why does my ode45 return a solution with the first values as zero despite I supplying non-zero initial conditions?
"Why does my ode45 return a solution with the first values as zero despite I supplying non-zero initial conditions?" Because yo...

23 giorni fa | 0

| accettato

Risposto
How to make this type of variation plot in MATLAB
You are looking for errorbar.

24 giorni fa | 0

| accettato

Risposto
Error using mesh - Z must be a matrix, not a scalar or vector, using mesh command
The difference between min(x1) and max(x1) is not 100, thus the vector x1fit generated via colon() is just min(x1). Consequently...

24 giorni fa | 0

| accettato

Risposto
Getting an error message when I use 'triangle()' function.
That help is for a Stateflow operator in SIMULINK (as mentioned in the 1st line), not for a function in MATLAB. help triangle ...

26 giorni fa | 0

| accettato

Risposto
I could not display all the legends related to the plotted bars
You get a single legend entry because there is only a single graphical object. If you want a separate legend for each bar, you ...

26 giorni fa | 0

| accettato

Risposto
Finding an angle in a trigonometric function using 2 equations
As you are solving for beta, you have to define beta as a symbolic variable. Also, I have reduced the step size in x, as the va...

27 giorni fa | 1

Risposto
error using preallocation for table using size option in R2023b
Use single quotation marks around the VariableTypes arguement instead of double quotation marks - % v ...

27 giorni fa | 0

| accettato

Risposto
converting 3d matrix into a cell array
@AT_HYZ, change the dimensions and use the above transformation - abc = rand(1001,259,259); %Shift dimensions Mymatrix = s...

28 giorni fa | 0

| accettato

Risposto
downgrade From matlab r2022b update 8 to r2022b update 5
https://in.mathworks.com/matlabcentral/answers/473278-how-can-i-roll-back-a-matlab-update https://in.mathworks.com/matlabcentra...

28 giorni fa | 0

Carica altro