Question


Challenge - Change my avatar colors
The spy function without arguments does my avatar picture, white background and blue "spy". # Change the background color # Cha...

plus de 14 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
Inserting a cell into a matrix
Welcome to MATLAB Answers. Wrong use of the word cell, MATLAB cells are another class different from array. a=zeros(7) a(1...

plus de 14 ans il y a | 1

Réponse apportée
Where is the error?
Just guessing: # g should be a logic value # SOC is a vector # SOC changes very quickly # Put the SOC value in a scope an...

plus de 14 ans il y a | 0

Réponse apportée
simulink matrix and vector creation
The constant block can create vectors, the mux block can turn each vector input in a row of the output array. You can also ma...

plus de 14 ans il y a | 1

| A accepté

Question


Funny situations while helping others on MATLAB Answers
Just for fun and mostly for those who are here almost everyday, tell us your funny situations (stories). # Someone who calls me...

plus de 14 ans il y a | 17 réponses | 9

17

réponses

Réponse apportée
MATLAB Central Answers website problem?
OMG now when I choose my own answers I get the oldest first and no way to reverse the order, that makes the feature completly us...

plus de 14 ans il y a | 1

Réponse apportée
How do I increase the amount of memory used by MATLAB?
memory Execute that command and read what MATLAB says.

plus de 14 ans il y a | 1

Réponse apportée
Needing a GUI for a structural model
The tool to build GUIs is called guide doc guide <http://www.mathworks.com/help/techdoc/creating_guis/bqz79mu.html#creating_gu...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
bar plot
Using my magic ball I will try to answer the question with one example made by me and based on the reference at the bottom fr...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
function entering and plotimg
function test123 figure axes('Position',[0.2 0.2 0.7 0.7]); pbh1 = uicontrol(gcf,'Style','pushbutton','String','New plot...

plus de 14 ans il y a | 0

Réponse apportée
Display Summation sign showing both upper and lower limit
figure1 = figure; axes1 = axes('Parent',figure1,... 'Position',[0.13 0.262 0.762 0.663]); text('Parent',axes1,...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
Suppressing plots and creating movies
doc movie %see the examples, very detailed and simple doc movie2avi

plus de 14 ans il y a | 0

Réponse apportée
Subplot after opening a saved figure
When you create a subplot get the handle for it like this h=subplot(... When you want to have one subplot as current axes do ax...

plus de 14 ans il y a | 0

Réponse apportée
plot point
x=[10 20 30 40 50 60 70 80 90]; y=[0.001 .05 0.1 .16 .7 .8 .01 .5 .3]; plot(x,y) hold on yi = interp1(x,y,65); ...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
How to check length of a .wav file through GUI
[y,fs] = wavread(filename); TotalTime = length(y)./fs; % time in seconds

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
Asymetric Amplitude
t=0:0.01:10; f=sin(t); f(f<0)=f(f<0)/2; plot(t,f)

plus de 14 ans il y a | 0

Réponse apportée
Best way to filter a Matrix
Maybe this can help you start with a smooth algorithm po=[1 2 3 10 4 5 100 6 7 8 9 0 10 11 12 0 13 14 15 16] p=po; v=diff...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Creating a Burst Random signal in Matlab
t=0:0.01:1; h=stairs(t,randi([0 1],1,numel(t))); axis([0 1 0 2]) YData=get(get(h,'children'),'YData'); %XData is the vec...

plus de 14 ans il y a | 0

Réponse apportée
Calling timer function from within another function
function doit x=2; t=timer('TimerFcn', @fun, 'ExecutionMode', 'fixedRate', 'Period', 1); function fun(obj,event) ...

plus de 14 ans il y a | 0

Réponse apportée
How to Plot Multiple variables ?(not multi-plot)
Bad idea to do it that way but I think you are missing axes hold on before the for loop

plus de 14 ans il y a | 0

Réponse apportée
defining constants in a equation
Just guessing by the tags, if you are referring to the solve function syms a b x %your symbolic variables c=1; %your con...

plus de 14 ans il y a | 1

Réponse apportée
strfind when I have more than one row
a=['Congratulations' 'to Walter ' 'for his 4000 ' 'reputation ' 'points '] rc=[];...

plus de 14 ans il y a | 1

Réponse apportée
Initial state vector "X0" must be a real vector of length 103.
My suggestion is for you to provide more details and/or that .m code you talk about

plus de 14 ans il y a | 0

Réponse apportée
Squeezing a two-dimensional array into a one-dimensional array without using a FOR loop
doc reshape A=[1 2 3 4; 5 6 7 8; 9 10 11 12] reshape(A',1,numel(A))

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Cannot set handles in Radio Button Group
Why do you reset all the radio buttons of the Radio Button Group? that doesn't make sense because the group must have one radio ...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Function returning multiple vectors
function [A B C]=myFct %if the values have diferent sizes or classes replace [] with {} A=['Lorem' 'ipsum']; B=[-1 10]; ...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
Help writting a simple code!
MATLAB Fcn exp(u)*sum([1:10].* exp([1:10].*u)) %not infinite sum but close enough

plus de 14 ans il y a | 0

Réponse apportée
How to make [cx cy] the center of a user defined mesh grid of size [ix iy]
<http://www.mathworks.com/matlabcentral/answers/10089-image-rotate Image rotate>

plus de 14 ans il y a | 0

Réponse apportée
Maple Symbolic Toolbox
symengine Execute symengine and choose Mupad

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
finding region
Just for fun I=[1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 ...

plus de 14 ans il y a | 0

Charger plus