Dyuman Joshi
Mechanical Engineer (IITG '20) | Moderator - MATLAB Cody since Jan 2021 | Time zone - IST (GMT +5.30) For any queries related to MATLAB Cody/Answers, contact me through my profile.
Programming Languages:
Python, MATLAB
Spoken Languages:
English, Hindi
Pronouns:
He/him
Professional Interests:
Fluid Dynamics, Aerospace Engineering, Computational Fluid Dynamics (CFD), Hydraulics and Pneumatics
Python, MATLAB
Spoken Languages:
English, Hindi
Pronouns:
He/him
Professional Interests:
Fluid Dynamics, Aerospace Engineering, Computational Fluid Dynamics (CFD), Hydraulics and Pneumatics
Feeds
답변 있음
Je ne trouve pas la bibliothèque "Specialized Power Systems Library" dans la version Matlab 2025b
See this thread - https://in.mathworks.com/matlabcentral/answers/2180147-unable-to-find-the-specialized-power-systems-group-in-s...
Je ne trouve pas la bibliothèque "Specialized Power Systems Library" dans la version Matlab 2025b
See this thread - https://in.mathworks.com/matlabcentral/answers/2180147-unable-to-find-the-specialized-power-systems-group-in-s...
13일 전 | 0
문제를 풀었습니다
CumulativeCumulative Count
This is a sequel to Problem #60994 - Cumulative Count. Given a row vector of integers with repeating values - here not all re...
14일 전
문제를 풀었습니다
Moving Movsum
Given a vector (x) and a window (y), calculate the sum s(k) corresponding to k-y(k)+1:k values of x %%Example 1 x = [1 2 3 4...
14일 전
문제를 풀었습니다
Padovan Polynomials
Hello there. I'm afraid I bear bad news - Anakin Skywalker is no longer a Jedi. But fear not young Padawan, we shall not falter...
15일 전
문제를 풀었습니다
Barnes G-Function
Evaluate the Barnes G-Function at a given value. %Example 1 in = 1; out = 1; %Example 1 in = 4; out = 2; Only vecto...
15일 전
문제를 풀었습니다
Compute the Dedekind psi function
Write a function to compute the Dedekind psi function. The values for n = 1, 2, 3, 4, 5, and 6 are 1, 3, 4, 6, 6, and 12.
15일 전
문제
Barnes G-Function
Evaluate the Barnes G-Function at a given value. %Example 1 in = 1; out = 1; %Example 1 in = 4; out = 2; Only vecto...
15일 전 | 1 | 솔버 수: 7
문제를 풀었습니다
MATLAB Counter
Write a function f = counter(x0,b) to construct a counter handle f that counts with an initial value x0 and a step size b. E...
15일 전
문제
Moving Movsum
Given a vector (x) and a window (y), calculate the sum s(k) corresponding to k-y(k)+1:k values of x %%Example 1 x = [1 2 3 4...
15일 전 | 0 | 솔버 수: 3
문제를 풀었습니다
Pivot index
Let L be a vector of numbers. We are searching for the index n of the pivot element defined as follows: the dot product of the e...
15일 전
문제를 풀었습니다
Find the triplet
Given an array x of size n > 3 and an integer N, return the indices of three elements in the array that sum up to the given inte...
15일 전
문제
CumulativeCumulative Count
This is a sequel to Problem #60994 - Cumulative Count. Given a row vector of integers with repeating values - here not all re...
15일 전 | 0 | 솔버 수: 3
답변 있음
MATLAB이 실행 명령을 내린 지 얼마 지나지 않아 스스로 종료됩니다.
Contact The MathWorks Support - Contact Support. Also, take a look at this thread and try the steps mentioned - https://in.math...
MATLAB이 실행 명령을 내린 지 얼마 지나지 않아 스스로 종료됩니다.
Contact The MathWorks Support - Contact Support. Also, take a look at this thread and try the steps mentioned - https://in.math...
16일 전 | 1
답변 있음
Changing my current Matlab location to a new computer.
The general procedure is to - Deactivate MATLAB on your old machine (see here : https://in.mathworks.com/matlabcentral/answers/...
Changing my current Matlab location to a new computer.
The general procedure is to - Deactivate MATLAB on your old machine (see here : https://in.mathworks.com/matlabcentral/answers/...
17일 전 | 0
답변 있음
Values not populating in table for variable
%clc %clear all %close all %define some initial variables theta = pi/4; R = 0.0006; w = 1.318*R; format longg %calculate...
Values not populating in table for variable
%clc %clear all %close all %define some initial variables theta = pi/4; R = 0.0006; w = 1.318*R; format longg %calculate...
24일 전 | 0
답변 있음
Is student license forever?
"After I bought it can I continue to use the version I bought for lifetime without paying?" Yes, MATLAB Student License is perp...
Is student license forever?
"After I bought it can I continue to use the version I bought for lifetime without paying?" Yes, MATLAB Student License is perp...
24일 전 | 1
답변 있음
How to solve the inertia error in Simscape Onramp Project ?
The error stems from the fact that there is an Electrical Reference which is connected to the Solver configuration. Delete it a...
How to solve the inertia error in Simscape Onramp Project ?
The error stems from the fact that there is an Electrical Reference which is connected to the Solver configuration. Delete it a...
24일 전 | 0
답변 있음
Counting the number 6s rolled from a dice
You can also use randi to generate the data as well - X = randi([1 6], 1, 1000); The "if" statement is only executed when al...
Counting the number 6s rolled from a dice
You can also use randi to generate the data as well - X = randi([1 6], 1, 1000); The "if" statement is only executed when al...
24일 전 | 0
| 수락됨
답변 있음
Live Script: Multiple Figures Merge into a Single Animation
Here's an approach with animatedline and subplot - %Data N = 500; x = linspace(0, pi, N); y1 = sin(x); y2 = cos(x); %Gen...
Live Script: Multiple Figures Merge into a Single Animation
Here's an approach with animatedline and subplot - %Data N = 500; x = linspace(0, pi, N); y1 = sin(x); y2 = cos(x); %Gen...
26일 전 | 0
문제를 풀었습니다
Integrate a product of gamma functions
Write a function to compute the following integral: where and is the gamma function, the subject of Cody Problem 46025.
28일 전
문제를 풀었습니다
Complete a geometric sequence
In Cody Problem 59786 minnolina asks us to find the integer that completes a randomly sorted arithmetic sequence with one missin...
28일 전
문제를 풀었습니다
String to Binary Representation
Given a string, convert it using UTF-8 into a binary array where each character or byte is arraigned low to high. For example: ...
28일 전
문제를 풀었습니다
Count the primes resulting from changing one digit of a number
If you start with the number 24 and seek primes by changing a single digit, you can find two: 23 and 29. If you start with 130, ...
29일 전
문제를 풀었습니다
Calculate the Voltage Through a Step-Up Transformer
Given a step-up transformer has a primary coil with A number loops, a secondary coil with B number loops, and a primary voltage ...
30일 전
문제를 풀었습니다
ICFP2024 005: Lambdaman 1, 2, 3
The ICFP2024 contest was held June29 thru July 1. The contest consisted of five parts: ICFP Language, Lambdaman maze, Starship f...
30일 전
문제를 풀었습니다
ICFP2024 007: Lambdaman 1, 2, 3 Breadth Solver
The ICFP2024 contest was held June29 thru July 1. The contest consisted of five parts: ICFP Language, Lambdaman maze, Starship f...
30일 전
문제를 풀었습니다
ICFP2024 009: Lambdaman Crawler-Backfill
The ICFP2024 contest was held June29 thru July 1. The contest consisted of five parts: ICFP Language, Lambdaman maze, Starship f...
30일 전
문제를 풀었습니다
Write a code to implement Euler's method to integrate a simple function
Euler's method approximates the solution to a differential equation as where . The challenge is to write a code that can take...
30일 전
문제를 풀었습니다
Fermat primes
Historical context The french mathematician Pierre de Fermat found the formula to find some prime numbers. He thought / co...
대략 1개월 전











