Réponse apportée
MATLAB 2025a new fonts. How do I use them.
I do not have that font in Ubuntu 24.04, MATLAB R2025b. You can select whatever font you like in the various MATLAB settings ...

9 mois il y a | 0

Réponse apportée
Extracting data from .txt file
Without having a .tb file to work with, and your description of it as a text file, I would use the readtable function with the F...

9 mois il y a | 0

| A accepté

Réponse apportée
matlab liscence issue in linux
See: Fedora 42 - Unable to launch MVM server: License Error: Licensing shutdown for one solution.

9 mois il y a | 0

Réponse apportée
Files deleted on MATLAB Online and now on my local drive
Contact Support There is always a possibility that they are not actually lost from MATLAB Online, and can be recovered. (I h...

9 mois il y a | 0

Réponse apportée
How to extract data from a figure as a text file
You have all the information available already in (x1,y1) and (x2,y2) and the findpeaks output. That is apparently all the in...

9 mois il y a | 1

Réponse apportée
How to compare two measurement datas from 2 different devices?
It would help to have the data, or at least a representative sample of it. Without knowing more, I would create a grid over t...

9 mois il y a | 1

Réponse apportée
i am not getting the output graph
What operating system are you using? What MATLAB version/release are you using? I had a problem similar to this with Ubunt...

9 mois il y a | 0

Réponse apportée
asking for buying laptop for matlab
For the essential requirements,see Choosing a Computer to Run MATLAB and Simulink Products. I encourage you to explore that ent...

9 mois il y a | 1

Réponse apportée
reduce mesh quantity in isosurface plot
We have a problem ... I used a script I wrote earlier to extract the text from your .m file to run here. I post all of it he...

9 mois il y a | 0

Réponse apportée
Fitting 8 equations simultaneously with three parameters
You might be able to use the mldivide, \ function -- Example -- % Eq. 1: 2A+3B+5C-1=0 % Eq. 2: -5A+2B-10C+12=0 % Eq. 3: 9A...

9 mois il y a | 3

Réponse apportée
Force arrays to print to screen without multiplier
Experiment with the format function. Example -- vProduct = 1.0e+03 *[0.0048 0.0076 3.1440 -0.004...

9 mois il y a | 0

Réponse apportée
MATLAB won't invert a function in the Laplace domain...
After running your code (with n=1.1), it seems that the problem is that using a non-integer value for 'n' produces non-integer e...

10 mois il y a | 1

Réponse apportée
Why doesn't matlab start?
According to the System Requirements, that should probably work. (Note the 'version 22H2' requirement for Windows 10.) Sinc...

10 mois il y a | 0

Réponse apportée
apply colour bar colours to data points
The third and fourth arguments of scatter can control the size and colours of the plotted points. It is also necessary to defin...

10 mois il y a | 0

Réponse apportée
Time to peak using findpeaks
I usually have findpeaks return the indices of the peaks. Your definition of the start time point isnot obvious. I would use...

10 mois il y a | 1

| A accepté

Réponse apportée
Discrepancy when plotting step response of two identical transfer functions.
We do not have the original data. I suspect that you are seeing the loss of precision due to using only 4 significant digits ...

10 mois il y a | 0

| A accepté

Réponse apportée
tiledlayout("vertical") with multiple columns
I am not certain that tiledlayout can easily do what you want. It might be easier to use subplot instead. That way, you can ...

10 mois il y a | 0

Réponse apportée
Mean of 3D matrix based on range of first dimension
Perhaps something like this -- A = randn(360,360,720); At = A(100:200,:,:); Atm = mean(At, 1); AtmSize = size(Atm) ...

10 mois il y a | 0

| A accepté

Réponse apportée
How to add two columns based on conditions
It is easiest to use 'logical indexing' for this. Try this -- intrun = [1 0 1 4; 2 0 1 5; 1 ...

10 mois il y a | 0

| A accepté

Réponse apportée
Compare two row and select appropriate data
I believe you want the minimum of the two columns. Try this -- Data = array2table(randi(9, 10, 2), VariableNames=["A","B"])...

10 mois il y a | 0

Réponse apportée
Is Helvetica available on every MATLAB platform?
On my Ubuntu 24.04 installation (latest updates), using yur example code, 'Helvetica' is the 12th entry in 'k'. Proportional ...

10 mois il y a | 0

| A accepté

Réponse apportée
Scatter point plot into plot3d or any surface
It would help to have your data. It might not be necessary to do any interpolation if you only want to use those vectors. Ju...

10 mois il y a | 1

Réponse apportée
I have a code but am unable to use if conditions with matrix value
I cannot understand what you want help with. If you want to avoid using values that equal 0, one way is to use 'logical index...

10 mois il y a | 0

Réponse apportée
Extracting Respiratory Cycle Duration from RPM Waveform Stored in DICOM Files
Part of the problem is that your instrument is 'saturating', such that the amplitude of the signal exceeds the ability of the in...

10 mois il y a | 0

| A accepté

Réponse apportée
how to know the version of simulink ?
Execute the ver command. ver .

10 mois il y a | 0

Réponse apportée
How to correctly find the solution of a system of equations containing trigonometric functions
It would be difficult to plot this since there are so many variables, and it is not obvious (to me, at least) what 1 or 2 variab...

10 mois il y a | 0

Réponse apportée
Listing values ​​for a specific harmonic line from waterfall figure
By 'harmonic line', I assume you intend frequency, the x-axis coordinate in each plot. A waterfall plot is a specific depiction...

10 mois il y a | 0

Réponse apportée
Fatal error starting Matlab 1. time in Ubuntu 25.04
From the Platform Roadmap documentation, R2023a only supports Ubuntu 22.04 LTS. The 25.04 release is not listed for any MATLAB ...

10 mois il y a | 0

Réponse apportée
How do I use readcell and keep leading spaces within cells
There may be other ways of doing this (and I am not certain that it will work with your Excel fiile), however if you define whit...

10 mois il y a | 2

Réponse apportée
How do I change column headers in my table
If your immediate problem is naming the variables, perhaps -- Int_force = randn(6,6,28); Force = repmat(["Axial Force";"Shea...

10 mois il y a | 0

| A accepté

Charger plus