Community Profile

photo

Viranch Patel


Last seen: mehr als 2 Jahre vor Aktiv seit 2021

Followers: 0   Following: 0

Statistiken

All
  • Solver
  • Revival Level 1
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Two separate outputs from one input
You can have multiple outputs from the function like this. function [multiply,sum] = test(x) multiply = x*2; sum = x+...

mehr als 2 Jahre vor | 1

Beantwortet
Question about how to put several values in one histogram
You can do something like this. X = categorical({'user win time','draw','computer win time'}); X = reordercats(X,{'user win t...

mehr als 2 Jahre vor | 0

Beantwortet
How to find real and complex roots for a nonlinear equation
For simplicity I have taken a simple function which has complex roots. syms H eq=H^2 + 1; solve(eq==0,H) You can specify yo...

mehr als 2 Jahre vor | 0

Beantwortet
How to put limit in my code?
If I have got the question correctly, then these functions may solve your query. xlim([x_min x_max]) ylim([y_min y_max]) zlim...

mehr als 2 Jahre vor | 0

Beantwortet
How to find rest of the number in matrix ?
a = 1:10; I = find(a>5); aa = a(I); bb = a; bb(I)=[]; You can reassign the value of bb as 'a' and then can have other value...

mehr als 2 Jahre vor | 1

Beantwortet
Matlab to solve finite difference for Ode
I tried running the code on my machine and it's working fine. You can paste this code to your machine and see if its working. I ...

fast 3 Jahre vor | 1

Beantwortet
Is there any MATLAB code to determine the optimum delay time from Average Mutual Information method (AMI)
I could not find any direct toolbox in MATLAB. But I found one research paper and its implementation which in the MATLAB. You ca...

fast 3 Jahre vor | 2

Beantwortet
Phase portrait of a system of PDE
You can checkout this smiliar answer - https://in.mathworks.com/matlabcentral/answers/416516-3d-phase-portrait Also I found a p...

fast 3 Jahre vor | 1

Beantwortet
Object position from a video
I found a MATLAB answer similar to this. You can look into that, it may help you. https://in.mathworks.com/matlabcentral/answer...

fast 3 Jahre vor | 0

Beantwortet
Sinogram BY USING CT scan
You can checkout the following links for this. These may help you. https://github.com/SanketD92/CT-Image-Reconstruction https:...

fast 3 Jahre vor | 1

Beantwortet
Can't open files on MATLAB Online
You can click on the open option in the top left cornor and you should see the following window from which you can oprn the file...

fast 3 Jahre vor | 0

Beantwortet
Returning Incorrect index of array
So if you write y = x(x>0), then it will take value only which is greater than 0 from the x and put it into y. x = [0 0.5 4 5];...

fast 3 Jahre vor | 1

Beantwortet
getting answers of an equation with 3 variables with known values
In general you can try like this. If E1, E2, E3 are arrays of size 12, then for i = 1:12 for j = 1:12 for k = 1:...

fast 3 Jahre vor | 1

Beantwortet
Matlab code related to finance
The function 'hist_stock_data' accepts only three arguments if you're referring to this function. So you can write like this i...

fast 3 Jahre vor | 0

Beantwortet
Variables won't display correctly in new Matlab version
It looks like you've tried something like this. val = zeros(117,5,'double','distributed'); Which gives output like this. But y...

fast 3 Jahre vor | 0