![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/8368449_1530384198681_DEF.jpg)
Andrea Monfredini
Followers: 0 Following: 0
Statistica
RANK
3.922
of 297.016
REPUTAZIONE
14
CONTRIBUTI
1 Domanda
6 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.0%
VOTI RICEVUTI
1
RANK
of 157.725
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Domanda
Symbolic solution of Transcendental equation
Matlab symbolic toolbox can't seem to solve a "simple" equation in the form of Here is my code: syms g l k t; eq = cos(g*l)...
quasi 6 anni fa | 2 risposte | 0
2
rispostePopulating a word doument with infomation from a excel spreadsheet?
Use the Word tab Mailings tools: https://support.office.com/en-gb/article/mail-merge-using-an-excel-spreadsheet-858c7d7f-5cc0-4...
quasi 6 anni fa | 0
Data interpolation from graph
n = 10; %the sample size x1 = linspace(0,5,n); %this is to simulate your x1 y1 = rand(1,n); %this is to simulate your y1 p...
quasi 6 anni fa | 0
| accettato
plot graph with value when finding fzero
You can substitute the equation expression of the operators * / and ^ with the respective dot operators f = @(h0) (-(6.*ita....
quasi 6 anni fa | 0
different parts of a matrix
A = rand(900,15); first_col = A(3:end,1); portion = A(33:58,1); always remember that when you are indexing inside a matrix,...
quasi 6 anni fa | 0
I need to assign colours to lines on a plot, related to a value for each of those lines
Hi Brian, why don't you try with something like this? forces = rand(21,1); n = length(forces); colormap = [0:1:(n-1); zero...
quasi 6 anni fa | 0
| accettato
What do I need to add to my code when using loglog to plot?
Hi Taylor Grey, the mistake is in the line when you call the loglog function. loglog(Fv, 20*log10(abs(FT_af(Iv,2))*2)), xlabe...
quasi 6 anni fa | 1
| accettato