photo

VBBV


PEC

Last seen: 1 jour il y a Actif depuis 2017

Followers: 1   Following: 5

Message

MATLAB enthusiast , Mechanical engineer (MeMe) :-)

Statistiques

All
  • MATLAB Central Treasure Hunt Finisher
  • 36 Month Streak
  • Guiding Light
  • Scholar
  • CUP Challenge Master
  • Personal Best Downloads Level 2
  • First Review
  • Creator
  • Introduction to MATLAB Master
  • Commenter
  • Community Group Solver
  • Thankful Level 5

Afficher les badges

Feeds

Afficher par

Réponse apportée
Adding Legend to Subplot
@Ollie Bardsley, you need to rearrange the few lines of code inside the for loop as shown below LF = ["0 1.fig","0 2.fig","1...

1 jour il y a | 0

| A accepté

Réponse apportée
How can I write a 'for' loop that sums up all elements of a vector?
@Seif do you mean like this ? a= [1:5] for i=1:3 c(i)=sum(a(i)+a(i+1)) disp(sum(c)) end

5 jours il y a | 0

| A accepté

Réponse apportée
Legend colors change when I have two y axes
colors=["#028A0F","#1D57A9","#3DCBC8","#9C58A1","#F0D04D","#CD0027","#EF9F26","#B2B3B5","#FA9DAC","#98FF98","#67032F","#010101"]...

6 jours il y a | 0

| A accepté

Réponse apportée
How to make the negative sign of y axis to be up ?
ydata = -900:100:100 xdata = ydata.*ones(1,length(ydata)) plot(xdata,ydata) yticks = ydata; yticklabels(fliplr(yticks))

7 jours il y a | 0

Réponse apportée
Incorrect dimensions for matrix multiplication
k = @(t,u) (k0 + (p*k0.^u-q*k0).*t +(p*k0.^u-q*k0).*(p*u*k0.^u-q).*t.^2/factorial(2)... +(p*k0.^u-q*k0).*((p*u.*k0.^u-q)....

environ 2 mois il y a | 0

| A accepté

Réponse apportée
how to get variable of function in for loop
x = 1:20; y = 1:13; f = []; for i = 1:length(x), for j = 1:length(y); f(i,j) = x(i).^2 - x(i) -2*y(j).^2 + y(j) -2...

environ 2 mois il y a | 0

Réponse apportée
Plotting of a rolling ball
@Cem Eren Aslan, you can use plot function handle and delete it at end of every iteration inside the loop, data = [0 ...

environ 2 mois il y a | 0

| A accepté

Réponse apportée
readmatrix returning last column as NaN
@Philip The last column has additional character (semicolon) ' ; ' even though it has numeric data. Use readtable to check that ...

environ 2 mois il y a | 1

| A accepté

Réponse apportée
issues about app design
function DropDown(app,event)

environ 2 mois il y a | 0

| A accepté

Réponse apportée
How to solve algebraic equations for different values of variables ?
eqn = Ac.*I.*eta-m.*c.*(Te-Ti)==0;

environ 2 mois il y a | 0

| A accepté

Réponse apportée
imagesc graph axis setting probelm in Matlab Appdesigner
@준홍Ok. It may be for this reason, using *sprintf* function when you print to status text area value. This function prints output...

2 mois il y a | 0

Réponse apportée
About While Loops problems
It has already exited, the first while loop, but it's waiting for next input from user ... See the message at bottom left of win...

2 mois il y a | 0

Réponse apportée
My User-defined Function is in red
>>[numout,unit] = MyUnitConverter(25,'cels2fahr') Call your function as above from command window

2 mois il y a | 0

Réponse apportée
How to extract a slider value?
@Darío Imbernón Clavero, You can call the ValueChangedFcn property for the uislider function, and define functions for ValueCha...

2 mois il y a | 0

Réponse apportée
2 variables symbolic function representation
Hi @laura bagnale, you can use the function handle and choose a suitable plot function for representation that best fits your ne...

2 mois il y a | 0

Réponse apportée
Error with my CODE and I don't know why.
@Raphael Marcelo You can modify the following lines in your code. i.e. set the uieditfield property to numeric instead of text...

2 mois il y a | 0

Réponse apportée
Arrowhead is turning the wrong way
Hi @Rasmus Bruun, In this line, you are trying to reverse the direction of X-axis (for unknown reason), If you comment the bel...

2 mois il y a | 0

Réponse apportée
Error in Error in odearguments (line 92) f0 = ode(t0,y0,args{:}); % ODE15I sets args{1} to yp0. Error in ode45 (line 104) odearguments(odeIsFuncHandle,odeTreatAsMFile,
@Juan you have probably tried using the arguments to the ode45 function as below, Try using the same syntax as it was provided ...

3 mois il y a | 0

Réponse apportée
I am getting the following error when I run my script: Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatc
h = h + (1/6) * (k1 + 2*k2 + 2*k3 + k4); % <> multplication operator is missing here

3 mois il y a | 0

Réponse apportée
Why are G1 and G2 outputs different?
The order of mathematical operations in evaluating G1 and G2 are different. In case of G1 , individual terms are evaluated first...

3 mois il y a | 0

Réponse apportée
Index exceeds number of array elements. Index must not exceed 8. HELP
Q = [beta alpha lambda vac d gamma c m]; The size of the vector is 1x8

3 mois il y a | 0

Réponse apportée
Extract certain values in .mat file
data= [-0.13793 -0.114746 -0.204773 -0.224304 -0.181274 -0.192566 -0.159912 -0.174866 -0.134888 -0.148926] data(2:2:end) dat...

3 mois il y a | 0

Réponse apportée
Function definitions are not permitted in this context.
Rename the file *ok.m* to *uniform_pcm.m* and save file. Type the name of function from command window (giving input arguments)...

3 mois il y a | 0

Réponse apportée
Create a solid line instead of single points in the plot
If the plot function is inside a loop, you could put it outside the loop as shown below, in order to plot solid line plot(vR(1,...

3 mois il y a | 0

Réponse apportée
Plotting a diagram and getting some errors
There is no function called plotv in Matlab (or it must have been removed in new release), Please refer to the following link f...

3 mois il y a | 0

| A accepté

Réponse apportée
fsolve stopped because the last step was ineffective
The problem seems to occur if you have the same initial conditions for all the angles. Try giving different initial conditions/...

3 mois il y a | 1

Réponse apportée
summation of aij & i, j dependent function in matlab
% % initial contraction from flow, formula from diagram 4.10 % % %given test values Re_0=60.46; f0=1; f1=2.7225; % ind=...

3 mois il y a | 0

| A accepté

Réponse apportée
Why am I receiving a "Too many output arguments" error on this particular code?
Load the data and assign to a variable. When you load a MAT file using load function, it returns a struct with different data ...

3 mois il y a | 1

| A accepté

Réponse apportée
Keeping getting gradient error and no figure 2
%function [] =ZacharyC1 clear all clc U=4.7; m=6; a=0.5; [X,Y]=meshgrid (linspace(-2,2,100),linspace(-2,2,100)); r=sqrt...

3 mois il y a | 0

Charger plus